users@mojo is the correct list for the maven plugin. iirc there is a means to add random stuff into the yaml. if not please file a jira
- Stephen
---
Sent from my Android phone, so random spelling mistakes, random nonsense words and other nonsense are a direct result of using swype to type on the screen
<project>
...
<build>
...
<plugins>
...
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cassandra-maven-plugin</artifactId>
<version>0.7.4-1</version>
<configuration>
<yaml><![CDATA[hinted_handoff_enabled: false
concurrent_reads: 4
concurrent_writes: 16
column_index_size_in_kb: 128
dynamic_snitch: false]]></yaml>
</configuration>
</plugin>
...
</plugins>
...
</build>
...
</project>
IIRC the yaml gets applied on top of the defaults so you can basically
override whatever you want
-Stephen