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.json</groupId> |
| 4 | <artifactId>JsonTraverse</artifactId> |
| 5 | <version>0.1-SNAPSHOT</version> |
| 6 | <packaging>jar</packaging> |
| 7 | <name>JsonTraverse</name> |
| 8 | <description>Methods for traversing a Json Tree (KorallQuery) and extracting/rewriting data</description> |
| 9 | |
| 10 | <dependencies> |
| 11 | <dependency> |
| 12 | <groupId>com.fasterxml.jackson.core</groupId> |
| 13 | <artifactId>jackson-core</artifactId> |
| 14 | <version>2.9.6</version> |
| 15 | <scope>compile</scope> |
| 16 | </dependency> |
| 17 | <dependency> |
| 18 | <groupId>com.fasterxml.jackson.core</groupId> |
| 19 | <artifactId>jackson-annotations</artifactId> |
| 20 | <version>2.9.6</version> |
| 21 | </dependency> |
| 22 | <dependency> |
| 23 | <groupId>com.fasterxml.jackson.core</groupId> |
| 24 | <artifactId>jackson-databind</artifactId> |
| 25 | <version>2.9.6</version> |
| 26 | <scope>provided</scope> |
| 27 | </dependency> |
| 28 | </dependencies> |
| 29 | |
| 30 | |
| 31 | <build> |
| 32 | <sourceDirectory>src</sourceDirectory> |
| 33 | <plugins> |
| 34 | <plugin> |
| 35 | <artifactId>maven-compiler-plugin</artifactId> |
| 36 | <version>3.7.0</version> |
| 37 | <configuration> |
| 38 | <source>1.8</source> |
| 39 | <target>1.8</target> |
| 40 | </configuration> |
| 41 | </plugin> |
| 42 | </plugins> |
| 43 | </build> |
| 44 | </project> |