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.glemm.client</groupId> |
| 4 | <artifactId>GlemmClient</artifactId> |
| 5 | <version>0.2-Test</version> |
| 6 | <name>Glemm Client library</name> |
| 7 | <description>Client for communication with Glemm Services</description> |
| 8 | <build> |
| 9 | <sourceDirectory>src</sourceDirectory> |
| 10 | <plugins> |
| 11 | <plugin> |
| 12 | <artifactId>maven-compiler-plugin</artifactId> |
| 13 | <version>3.7.0</version> |
| 14 | <configuration> |
| 15 | <source>1.8</source> |
| 16 | <target>1.8</target> |
| 17 | </configuration> |
| 18 | </plugin> |
| 19 | </plugins> |
| 20 | </build> |
| 21 | |
| 22 | <dependencies> |
| 23 | <dependency> |
| 24 | <groupId>com.fasterxml.jackson.core</groupId> |
| 25 | <artifactId>jackson-core</artifactId> |
| 26 | <version>2.9.6</version> |
| 27 | <scope>compile</scope> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>com.fasterxml.jackson.core</groupId> |
| 31 | <artifactId>jackson-annotations</artifactId> |
| 32 | <version>2.9.6</version> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>com.fasterxml.jackson.core</groupId> |
| 36 | <artifactId>jackson-databind</artifactId> |
| 37 | <version>2.9.6</version> |
| 38 | <scope>compile</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>de.korap.json</groupId> |
| 42 | <artifactId>JsonTraverse</artifactId> |
| 43 | <version>0.1-SNAPSHOT</version> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>de.korap.services</groupId> |
| 47 | <artifactId>utils</artifactId> |
| 48 | <version>0.1-SNAPSHOT</version> |
| 49 | <scope>compile</scope> |
| 50 | </dependency> |
| 51 | </dependencies> |
| 52 | |
| 53 | </project> |