Added configuration to include the mainclass in manifest.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@390044 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Frederick G. Oconer 2006-03-30 09:30:03 +00:00
parent 2ed21cedd0
commit 71f15d4804
1 changed files with 8 additions and 6 deletions

View File

@ -102,17 +102,13 @@
<build> <build>
<plugins> <plugins>
<!-- Configure which tests are included/excuded --> <!-- Configure which tests are included/excuded -->
<plugin> <plugin>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<configuration> <configuration>
<forkMode>pertest</forkMode> <forkMode>pertest</forkMode>
<childDelegation>false</childDelegation> <childDelegation>false</childDelegation>
<useFile>true</useFile> <useFile>true</useFile>
<excludes>
</excludes>
<includes> <includes>
<include>**/*Test.*</include> <include>**/*Test.*</include>
</includes> </includes>
@ -129,8 +125,14 @@
</goals> </goals>
</execution> </execution>
</executions> </executions>
<configuration>
<archive>
<manifest>
<mainClass>org.apache.activemq.console.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>