kske
88c810c2f4
* Removed JAX-RS dependency from POM * Changed version in POM to 0.3-alpha The errors that appear throughout LocalDB and Client are caused by the architecture change and will be removed in future commits.
31 lines
999 B
XML
31 lines
999 B
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>
|
|
|
|
<groupId>informatik-ag-ngl</groupId>
|
|
<artifactId>envoy-client</artifactId>
|
|
<version>0.3-alpha</version>
|
|
|
|
<name>Envoy Client</name>
|
|
<url>https://github.com/informatik-ag-ngl/envoy-client</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>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>informatik-ag-ngl</groupId>
|
|
<artifactId>envoy-common</artifactId>
|
|
<version>0.2-alpha</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>envoy-client</finalName>
|
|
</build>
|
|
</project> |