You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.0 KiB
68 lines
2.0 KiB
<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> |
|
<groupId>com.test</groupId> |
|
<artifactId>testSocketClient</artifactId> |
|
<version>1.0</version> |
|
<packaging>jar</packaging> |
|
<name>testSocketClient</name> |
|
<url>http://www.fourelementscapital.com</url> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<!-- build an executable JAR --> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-jar-plugin</artifactId> |
|
<version>3.0.2</version> |
|
<configuration> |
|
<archive> |
|
<manifest> |
|
<addClasspath>true</addClasspath> |
|
<classpathPrefix>lib/</classpathPrefix> |
|
<mainClass>com.test.App</mainClass> |
|
</manifest> |
|
</archive> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<artifactId>maven-assembly-plugin</artifactId> |
|
<version>2.6</version> |
|
<configuration> |
|
<archive> |
|
<manifest> |
|
<addClasspath>true</addClasspath> |
|
<mainClass>com.test.App</mainClass> |
|
</manifest> |
|
</archive> |
|
<descriptorRefs> |
|
<descriptorRef>jar-with-dependencies</descriptorRef> |
|
</descriptorRefs> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>make-assembly</id> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>single</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<dependencies> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<version>3.8.1</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.fourelementscapital</groupId> |
|
<artifactId>lib-socket</artifactId> |
|
<version>1.0</version> |
|
</dependency> |
|
|
|
</dependencies> |
|
</project> |