Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add instructions on assembling a test server

...

helps to find the bad dependencies. On a related note, generally you have to exclude original jars from the dependencyManagement dependency entry of a bundleized repackaging. This seems like a serious defect in maven-bundle-plugin.

Assemble a server to make sure each set of plugins starts.

I think it's a good idea to assemble a server for each set of plugins to make sure they at least start. Here's how:

  1. run
    Code Block
    
    mvn archetype:create \
       -DarchetypeGroupId=org.apache.geronimo.buildsupport \
       -DarchetypeArtifactId=geronimo-assembly-archetype \
       -DarchetypeVersion=3.0-SNAPSHOT \
       -DgroupId=org.apache.geronimo.plugins \
       -DartifactId=geronimo-<foo>-server
    
    where <foo> is your set of plugins
  2. add it to svn
  3. add the plugins you want to test as depedendencies
  4. add this to start the server when run with -Pit
    in plugin management:
    Code Block
    
                    <plugin>
                        <groupId>org.apache.geronimo.buildsupport</groupId>
                        <artifactId>geronimo-maven-plugin</artifactId>
                        <version>${version}</version>
    
                        <configuration>
                           <assemblyArchive>${project.build.directory}/${pom.artifactId}-${pom.version}-bin.zip</assemblyArchive>
                            <optionSets>
                                <optionSet>
                                    <id>morememory</id>
                                    <options>
                                        <option>-Xmx512m</option>
                                        <option>-XX:MaxPermSize=128m</option>
                                    </options>
                                </optionSet>
    
                                <optionSet>
                                    <id>debug</id>
                                    <options>
                                        <option>-Xdebug</option>
                                        <option>-Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n</option>
                                    </options>
                                </optionSet>
                            </optionSets>
                        </configuration>
                        <executions>
                             <execution>
                                 <id>start</id>
                                 <phase>pre-integration-test</phase>
                                 <goals>
                                     <goal>start-server</goal>
                                 </goals>
                                 <configuration>
                                     <assemblyId>${it-server}</assemblyId>
                                     <logOutput>true</logOutput>
                                     <background>true</background>
                                     <verifyTimeout>300</verifyTimeout>
                                     <refresh>true</refresh>
                                     <optionSets>
                                         <optionSet>
                                             <id>default</id>
                                             <options>
                                                <option>-XX:MaxPermSize=128m</option>
                                             </options>
                                         </optionSet>
    
                                         <optionSet>
                                              <id>morememory</id>
                                              <options>
                                                  <option>-Xmx512m</option>
                                                  <option>-XX:MaxPermSize=128m</option>
                                              </options>
                                          </optionSet>
    
                                          <optionSet>
                                              <id>debug</id>
                                              <options>
                                                  <option>-Xdebug</option>
                                                  <option>-Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n</option>
                                              </options>
                                          </optionSet>
                                     </optionSets>
                                 </configuration>
                             </execution>
                             <execution>
                                 <id>stop</id>
                                 <phase>install</phase>
                                 <goals>
                                     <goal>stop-server</goal>
                                 </goals>
                             </execution>
                         </executions>
                    </plugin>
    
    and a profile
    Code Block
    
        <profiles>
            <profile>
                <id>it</id>
                <build>
                    <plugins>
                        <plugin>
                            <groupId>org.apache.geronimo.buildsupport</groupId>
                            <artifactId>geronimo-maven-plugin</artifactId>
                        </plugin>
                    </plugins>
                </build>
            </profile>
        </profiles>
    

Note that at the moment the -Pit doesn't actually work, you have to try to start the server by hand