Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
xml
xml
  
<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>

Multi-Module Tests

It is possible to configure the iTest plugin to test multiple contributions that are built from separate Maven modules. These modules may be part of the current project or contained in a separate project.

To deploy separate contributions to the iTest plugin, use the contributions element with nested dependency elements:

Code Block
xml
xml
<build>
   <plugins>
      <plugin>
         <groupId>org.fabric3</groupId>
         <artifactId>fabric3-itest-plugin</artifactId>
         <version>${fabric3.version}</version>
         <configuration>
            <contributions>
               <dependency>
                  <groupId>org.fabric3.tests</groupId>
                  <artifactId>test-multiple-application</artifactId>
                  <version>${project.version}</version>
               </dependency>
            </contributions>
         </configuration>
          .... 

      </plugin>
   </plugins>
</build>