The Maven runtime systemConfig is specified inline as part of the plugin <systemConfig> element in a CDATA section. It is the same format as the other Fabric3 runtime systemConfig.xml files:
<plugin> <plugin> <groupId>org.codehaus.fabric3</groupId> <artifactId>fabric3-itest-plugin</artifactId> <version>${fabric3.version}</version> <configuration> <runtimeVersion>${fabric3.version}</runtimeVersion> <systemConfig> <![CDATA[ <config> <thread.pool size="100"/> </config> ]]> </systemConfig> </configuration> ..... </plugin> </plugins>
0 Comments