[404] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0"
|
---|
| 2 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
---|
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
---|
| 4 | <modelVersion>4.0.0</modelVersion>
|
---|
| 5 | <groupId>tudelft.utilities.j2p</groupId>
|
---|
| 6 | <artifactId>jackson-t</artifactId>
|
---|
| 7 | <version>1.0.0</version>
|
---|
| 8 |
|
---|
| 9 | <properties>
|
---|
| 10 | <!-- Tell Maven we want to use Java 8 -->
|
---|
| 11 | <maven.compiler.source>1.8</maven.compiler.source>
|
---|
| 12 | <maven.compiler.target>1.8</maven.compiler.target>
|
---|
| 13 | <!-- Tell Maven to treat all source files as UTF-8 -->
|
---|
| 14 | <jackson-2-version>2.12.3</jackson-2-version>
|
---|
| 15 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
---|
| 16 | </properties>
|
---|
| 17 |
|
---|
| 18 | <dependencies>
|
---|
| 19 | <dependency>
|
---|
| 20 | <groupId>tudelft.utilities.j2p</groupId>
|
---|
| 21 | <artifactId>core</artifactId>
|
---|
| 22 | <version>1.0.0</version>
|
---|
| 23 | </dependency>
|
---|
| 24 |
|
---|
| 25 | <dependency>
|
---|
| 26 | <groupId>junit</groupId>
|
---|
| 27 | <artifactId>junit</artifactId>
|
---|
| 28 | <version>4.12</version>
|
---|
| 29 | <scope>test</scope>
|
---|
| 30 | </dependency>
|
---|
| 31 |
|
---|
| 32 |
|
---|
| 33 |
|
---|
| 34 | <dependency>
|
---|
| 35 | <groupId>tudelft.utilities</groupId>
|
---|
| 36 | <artifactId>pyrunner</artifactId>
|
---|
| 37 | <version>1.0.3</version>
|
---|
| 38 | </dependency>
|
---|
| 39 |
|
---|
| 40 | <dependency>
|
---|
| 41 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
| 42 | <artifactId>jackson-core</artifactId>
|
---|
| 43 | <version>${jackson-2-version}</version>
|
---|
| 44 | <scope>test</scope>
|
---|
| 45 | </dependency>
|
---|
| 46 |
|
---|
| 47 | <!-- Just the annotations; use this dependency if you want to attach annotations
|
---|
| 48 | to classes without connecting them to the code. -->
|
---|
| 49 | <dependency>
|
---|
| 50 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
| 51 | <artifactId>jackson-annotations</artifactId>
|
---|
| 52 | <version>${jackson-2-version}</version>
|
---|
| 53 | <scope>test</scope>
|
---|
| 54 | </dependency>
|
---|
| 55 |
|
---|
| 56 | <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
|
---|
| 57 | <dependency>
|
---|
| 58 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
| 59 | <artifactId>jackson-databind</artifactId>
|
---|
| 60 | <version>${jackson-2-version}</version>
|
---|
| 61 | <scope>test</scope>
|
---|
| 62 | </dependency>
|
---|
| 63 |
|
---|
| 64 | <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
|
---|
| 65 | <dependency>
|
---|
| 66 | <groupId>com.fasterxml.jackson.dataformat</groupId>
|
---|
| 67 | <artifactId>jackson-dataformat-smile</artifactId>
|
---|
| 68 | <version>${jackson-2-version}</version>
|
---|
| 69 | <scope>test</scope>
|
---|
| 70 | </dependency>
|
---|
| 71 | <!-- JAX-RS provider -->
|
---|
| 72 | <dependency>
|
---|
| 73 | <groupId>com.fasterxml.jackson.jaxrs</groupId>
|
---|
| 74 | <artifactId>jackson-jaxrs-json-provider</artifactId>
|
---|
| 75 | <version>${jackson-2-version}</version>
|
---|
| 76 | <scope>test</scope>
|
---|
| 77 | </dependency>
|
---|
| 78 | <!-- Support for JAX-B annotations as additional configuration -->
|
---|
| 79 | <dependency>
|
---|
| 80 | <groupId>com.fasterxml.jackson.module</groupId>
|
---|
| 81 | <artifactId>jackson-module-jaxb-annotations</artifactId>
|
---|
| 82 | <version>${jackson-2-version}</version>
|
---|
| 83 | <scope>test</scope>
|
---|
| 84 | </dependency>
|
---|
| 85 |
|
---|
| 86 |
|
---|
| 87 | </dependencies>
|
---|
| 88 | </project> |
---|