2019-12-23 21:31:51 +01:00
|
|
|
<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>informatik-ag-ngl</groupId>
|
|
|
|
<artifactId>envoy-server-standalone</artifactId>
|
2019-12-29 09:48:15 +01:00
|
|
|
<version>0.1-alpha</version>
|
2019-12-23 21:31:51 +01:00
|
|
|
|
|
|
|
<name>Envoy Server</name>
|
|
|
|
<url>https://github.com/informatik-ag-ngl/envoy-server-standalone</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
2020-01-11 11:43:31 +01:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
2019-12-28 14:48:39 +01:00
|
|
|
<dependencies>
|
2019-12-29 09:48:15 +01:00
|
|
|
<dependency>
|
2020-01-11 11:43:31 +01:00
|
|
|
<groupId>com.github.informatik-ag-ngl</groupId>
|
2019-12-29 09:48:15 +01:00
|
|
|
<artifactId>envoy-common</artifactId>
|
2020-02-12 07:53:54 +01:00
|
|
|
<version>f~advanced_login-SNAPSHOT</version>
|
2019-12-29 09:48:15 +01:00
|
|
|
</dependency>
|
2019-12-28 14:48:39 +01:00
|
|
|
<dependency>
|
2020-01-11 11:43:31 +01:00
|
|
|
<groupId>com.github.informatik-ag-ngl</groupId>
|
2019-12-28 14:48:39 +01:00
|
|
|
<artifactId>java-nio-server</artifactId>
|
2020-01-11 11:43:31 +01:00
|
|
|
<version>master-SNAPSHOT</version>
|
2019-12-28 14:48:39 +01:00
|
|
|
</dependency>
|
2020-01-02 17:50:56 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
|
|
|
<version>5.4.10.Final</version>
|
|
|
|
</dependency>
|
2020-01-06 13:58:28 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<version>42.2.9</version>
|
|
|
|
</dependency>
|
2019-12-28 14:48:39 +01:00
|
|
|
</dependencies>
|
|
|
|
|
2019-12-23 21:31:51 +01:00
|
|
|
<build>
|
|
|
|
<finalName>envoy-server-standalone</finalName>
|
2020-01-27 18:36:13 +01:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2019-12-23 21:31:51 +01:00
|
|
|
</build>
|
|
|
|
</project>
|