<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.brienwheeler.dist</groupId> <artifactId>pom-dist</artifactId> <version>1.08</version> </parent> <artifactId>dist-tomcat</artifactId> <packaging>jar</packaging> <dependencies> <!-- - Runtime dependencies --> <dependency> <groupId>com.brienwheeler.apps</groupId> <artifactId>apps-main</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.brienwheeler.apps</groupId> <artifactId>apps-tomcat</artifactId> <scope>runtime</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>com.brienwheeler.apps.main.ContextMain</mainClass> </manifest> </archive> <descriptors> <descriptor>src/main/assembly/dist-tomcat.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>
<dependency> <groupId>com.brienwheeler.dist</groupId> <artifactId>dist-tomcat</artifactId> <version>1.08</version> <classifier>jar-with-dependencies</classifier> </dependency>
com.brienwheeler.dist:dist-tomcat:1.08:jar-with-dependencies