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.
87 lines
2.1 KiB
87 lines
2.1 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> |
|
|
|
<artifactId>envoy-server</artifactId> |
|
<name>Envoy Server</name> |
|
|
|
<parent> |
|
<groupId>informatik-ag-ngl</groupId> |
|
<artifactId>envoy</artifactId> |
|
<version>0.1-beta</version> |
|
</parent> |
|
|
|
<repositories> |
|
<repository> |
|
<id>jitpack.io</id> |
|
<url>https://jitpack.io</url> |
|
</repository> |
|
</repositories> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>informatik-ag-ngl</groupId> |
|
<artifactId>envoy-common</artifactId> |
|
<version>0.1-beta</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.github.informatik-ag-ngl</groupId> |
|
<artifactId>java-nio-server</artifactId> |
|
<version>master-SNAPSHOT</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.hibernate</groupId> |
|
<artifactId>hibernate-core</artifactId> |
|
<version>5.4.10.Final</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.postgresql</groupId> |
|
<artifactId>postgresql</artifactId> |
|
<version>42.2.9</version> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<finalName>envoy-server</finalName> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
</resource> |
|
</resources> |
|
<pluginManagement> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.8.1</version> |
|
</plugin> |
|
</plugins> |
|
</pluginManagement> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-assembly-plugin</artifactId> |
|
<version>3.2.0</version> |
|
<executions> |
|
<execution> |
|
<phase>package</phase> |
|
<goals> |
|
<goal>single</goal> |
|
</goals> |
|
<configuration> |
|
<archive> |
|
<manifest> |
|
<mainClass>envoy.server.Startup</mainClass> |
|
</manifest> |
|
</archive> |
|
<descriptorRefs> |
|
<descriptorRef>jar-with-dependencies</descriptorRef> |
|
</descriptorRefs> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project>
|
|
|