archetype-resources.pom.xml Maven / Gradle / Ivy
<?xml version="1.0"?> <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"> <groupId>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <version>${version}</version> <modelVersion>4.0.0</modelVersion> <name>${artifactId} app</name> <properties> <jetstream.version>4.1.0</jetstream.version> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <!-- Manifest specific configuration --> <manifest> <!-- Classpath is added to the manifest of the created jar file. --> <addClasspath>true</addClasspath> <classpathPrefix>lib/</classpathPrefix> <useUniqueVersions>false</useUniqueVersions> <mainClass>com.ebay.jetstream.application.JetstreamApplication</mainClass> </manifest> </archive> <finalName>${project.artifactId}</finalName> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <phase>package</phase> <id>assembly</id> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors> <finalName>${project.artifactId}-${project.version}</finalName> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> <configuration> <source>1.6</source> <target>1.6</target> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </build> <dependencies> <!-- Using logback and redirect all other logs to slf4j --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.1.2</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-core</artifactId> <version>1.1.2</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> <version>1.7.10</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>1.7.10</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> <version>1.7.10</version> </dependency> <dependency> <groupId>com.ebay.jetstream</groupId> <artifactId>jetstreamcore</artifactId> <version>${jetstream.version}</version> </dependency> <dependency> <groupId>com.ebay.jetstream</groupId> <artifactId>jetstreamframework</artifactId> <version>${jetstream.version}</version> </dependency> <dependency> <groupId>com.ebay.jetstream</groupId> <artifactId>jetstream-messaging</artifactId> <version>${jetstream.version}</version> </dependency> <dependency> <groupId>com.ebay.jetstream</groupId> <artifactId>jetstream-channels-processors</artifactId> <version>${jetstream.version}</version> </dependency> </dependencies> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy