2021-03-31 15:38:46 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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>org.reso</groupId>
|
|
|
|
<artifactId>RESOservice</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<name>RESOservice</name>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<junit.version>5.7.0</junit.version>
|
|
|
|
<javax.version>2.5</javax.version>
|
2021-05-06 14:20:02 -04:00
|
|
|
<odata.version>4.8.0</odata.version>
|
2021-03-31 15:38:46 -04:00
|
|
|
<slf4j.version>1.7.7</slf4j.version>
|
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
<version>4.0.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2021-04-01 03:14:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>8.0.23</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2021-07-22 16:10:22 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<version>42.2.23</version>
|
|
|
|
</dependency>
|
|
|
|
|
2021-03-31 15:38:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.olingo</groupId>
|
|
|
|
<artifactId>odata-server-api</artifactId>
|
|
|
|
<version>${odata.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.olingo</groupId>
|
|
|
|
<artifactId>odata-server-core</artifactId>
|
|
|
|
<version>${odata.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2021-04-15 16:16:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>2.11.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2021-03-31 15:38:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.olingo</groupId>
|
|
|
|
<artifactId>odata-commons-api</artifactId>
|
|
|
|
<version>${odata.version}</version>
|
|
|
|
</dependency>
|
2021-04-20 15:05:57 -04:00
|
|
|
|
2021-03-31 15:38:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.olingo</groupId>
|
|
|
|
<artifactId>odata-commons-core</artifactId>
|
|
|
|
<version>${odata.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<version>${slf4j.version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2021-04-20 15:05:57 -04:00
|
|
|
|
2021-03-31 15:38:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.7.11</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-04-20 15:05:57 -04:00
|
|
|
|
2021-03-31 15:38:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2021-04-22 15:57:44 -04:00
|
|
|
|
2021-04-20 15:05:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
<version>2.11.4</version>
|
|
|
|
</dependency>
|
2021-03-31 15:38:46 -04:00
|
|
|
|
2021-08-18 17:45:31 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.8.7</version>
|
|
|
|
</dependency>
|
2021-03-31 15:38:46 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>3.3.0</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|