bodmo | d8e7e6c | 2021-11-10 11:07:38 +0100 | [diff] [blame^] | 1 | <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"> |
| 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <groupId>de.korap.services</groupId> |
| 4 | <artifactId>wformServiceJar</artifactId> |
| 5 | <version>0.1-SNAPSHOT</version> |
| 6 | <name>WformServices-Jar</name> |
| 7 | <description>JAR for WformServices Sources</description> |
| 8 | |
| 9 | <dependencies> |
| 10 | <dependency> |
| 11 | <groupId>javax.servlet</groupId> |
| 12 | <artifactId>servlet-api</artifactId> |
| 13 | <version>2.5</version> |
| 14 | </dependency> |
| 15 | <!-- https://mvnrepository.com/artifact/javax.ws.rs/javax.ws.rs-api --> |
| 16 | <dependency> |
| 17 | <groupId>javax.ws.rs</groupId> |
| 18 | <artifactId>javax.ws.rs-api</artifactId> |
| 19 | <version>2.0</version> |
| 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>com.fasterxml.jackson.core</groupId> |
| 23 | <artifactId>jackson-core</artifactId> |
| 24 | <version>2.9.6</version> |
| 25 | <scope>compile</scope> |
| 26 | </dependency> |
| 27 | <dependency> |
| 28 | <groupId>com.fasterxml.jackson.core</groupId> |
| 29 | <artifactId>jackson-annotations</artifactId> |
| 30 | <version>2.9.6</version> |
| 31 | </dependency> |
| 32 | <dependency> |
| 33 | <groupId>com.fasterxml.jackson.core</groupId> |
| 34 | <artifactId>jackson-databind</artifactId> |
| 35 | <version>2.9.6</version> |
| 36 | <scope>provided</scope> |
| 37 | </dependency> |
| 38 | </dependencies> |
| 39 | |
| 40 | <build> |
| 41 | <sourceDirectory>src</sourceDirectory> |
| 42 | <plugins> |
| 43 | <plugin> |
| 44 | <artifactId>maven-compiler-plugin</artifactId> |
| 45 | <version>3.7.0</version> |
| 46 | <configuration> |
| 47 | <source>1.8</source> |
| 48 | <target>1.8</target> |
| 49 | </configuration> |
| 50 | </plugin> |
| 51 | </plugins> |
| 52 | </build> |
| 53 | </project> |