124 lines
5.0 KiB
XML
124 lines
5.0 KiB
XML
|
<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>
|
||
|
<artifactId>disruptor</artifactId>
|
||
|
<version>0.1.0-SNAPSHOT</version>
|
||
|
<name>disruptor</name>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>com.baeldung</groupId>
|
||
|
<artifactId>parent-modules</artifactId>
|
||
|
<version>1.0.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- utils -->
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-lang3</artifactId>
|
||
|
<version>${commons-lang3.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.lmax</groupId>
|
||
|
<artifactId>disruptor</artifactId>
|
||
|
<version>${disruptor.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<finalName>disruptor</finalName>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<filtering>true</filtering>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>${maven-jar-plugin.version}</version>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<addClasspath>true</addClasspath>
|
||
|
<classpathPrefix>libs/</classpathPrefix>
|
||
|
<mainClass>org.baeldung.executable.ExecutableMavenJar</mainClass>
|
||
|
</manifest>
|
||
|
</archive>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>single</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<archiveBaseDirectory>${project.basedir}</archiveBaseDirectory>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<mainClass>org.baeldung.executable.ExecutableMavenJar</mainClass>
|
||
|
</manifest>
|
||
|
</archive>
|
||
|
<descriptorRefs>
|
||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||
|
</descriptorRefs>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-shade-plugin</artifactId>
|
||
|
<version>${maven-shade-plugin.version}</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>shade</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<shadedArtifactAttached>true</shadedArtifactAttached>
|
||
|
<transformers>
|
||
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
||
|
<mainClass>org.baeldung.executable.ExecutableMavenJar</mainClass>
|
||
|
</transformer>
|
||
|
</transformers>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>com.jolira</groupId>
|
||
|
<artifactId>onejar-maven-plugin</artifactId>
|
||
|
<version>${onejar-maven-plugin.version}</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<configuration>
|
||
|
<mainClass>org.baeldung.executable.ExecutableMavenJar</mainClass>
|
||
|
<attachToBuild>true</attachToBuild>
|
||
|
<filename>${project.build.finalName}-onejar.${project.packaging}</filename>
|
||
|
</configuration>
|
||
|
<goals>
|
||
|
<goal>one-jar</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
<properties>
|
||
|
<!-- util -->
|
||
|
<disruptor.version>3.3.6</disruptor.version>
|
||
|
<!-- testing -->
|
||
|
<maven-shade-plugin.version>2.4.3</maven-shade-plugin.version>
|
||
|
<maven-jar-plugin.version>3.0.2</maven-jar-plugin.version>
|
||
|
<onejar-maven-plugin.version>1.4.4</onejar-maven-plugin.version>
|
||
|
</properties>
|
||
|
|
||
|
</project>
|