[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>
|
---|
[1227] | 7 | <version>1.0.4</version>
|
---|
[404] | 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>
|
---|
[1113] | 15 | <j2p-version>${project.version}</j2p-version>
|
---|
[404] | 16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
---|
| 17 | </properties>
|
---|
| 18 |
|
---|
[453] | 19 |
|
---|
| 20 | <repositories>
|
---|
| 21 | <repository>
|
---|
| 22 | <id>artifactory.ewi.tudelft.nl</id>
|
---|
[1113] | 23 | <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
[453] | 24 | <snapshots>
|
---|
| 25 | <enabled>false</enabled>
|
---|
| 26 | </snapshots>
|
---|
| 27 | </repository>
|
---|
| 28 | </repositories>
|
---|
| 29 |
|
---|
| 30 |
|
---|
[404] | 31 | <dependencies>
|
---|
| 32 | <dependency>
|
---|
| 33 | <groupId>tudelft.utilities.j2p</groupId>
|
---|
| 34 | <artifactId>core</artifactId>
|
---|
[1113] | 35 | <version>${j2p-version}</version>
|
---|
[404] | 36 | </dependency>
|
---|
| 37 |
|
---|
| 38 | <dependency>
|
---|
[491] | 39 | <groupId>tudelft.utilities.j2p</groupId>
|
---|
| 40 | <artifactId>junit-t</artifactId>
|
---|
[1113] | 41 | <version>${j2p-version}</version>
|
---|
[491] | 42 | </dependency>
|
---|
[505] | 43 |
|
---|
[491] | 44 | <dependency>
|
---|
[404] | 45 | <groupId>junit</groupId>
|
---|
| 46 | <artifactId>junit</artifactId>
|
---|
| 47 | <version>4.12</version>
|
---|
| 48 | <scope>test</scope>
|
---|
| 49 | </dependency>
|
---|
| 50 |
|
---|
[510] | 51 | <dependency>
|
---|
| 52 | <groupId>tudelft.utilities</groupId>
|
---|
| 53 | <artifactId>logging</artifactId>
|
---|
[1099] | 54 | <version>1.1.0</version>
|
---|
[510] | 55 | </dependency>
|
---|
[404] | 56 |
|
---|
| 57 | <dependency>
|
---|
| 58 | <groupId>tudelft.utilities</groupId>
|
---|
| 59 | <artifactId>pyrunner</artifactId>
|
---|
[1111] | 60 | <version>1.2.1</version>
|
---|
[877] | 61 | <scope>test</scope>
|
---|
[404] | 62 | </dependency>
|
---|
| 63 |
|
---|
| 64 | <dependency>
|
---|
| 65 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
| 66 | <artifactId>jackson-core</artifactId>
|
---|
| 67 | <version>${jackson-2-version}</version>
|
---|
| 68 | <scope>test</scope>
|
---|
| 69 | </dependency>
|
---|
| 70 |
|
---|
| 71 | <!-- Just the annotations; use this dependency if you want to attach annotations
|
---|
| 72 | to classes without connecting them to the code. -->
|
---|
| 73 | <dependency>
|
---|
| 74 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
| 75 | <artifactId>jackson-annotations</artifactId>
|
---|
| 76 | <version>${jackson-2-version}</version>
|
---|
| 77 | <scope>test</scope>
|
---|
| 78 | </dependency>
|
---|
| 79 |
|
---|
| 80 | <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
|
---|
| 81 | <dependency>
|
---|
| 82 | <groupId>com.fasterxml.jackson.core</groupId>
|
---|
| 83 | <artifactId>jackson-databind</artifactId>
|
---|
| 84 | <version>${jackson-2-version}</version>
|
---|
| 85 | <scope>test</scope>
|
---|
| 86 | </dependency>
|
---|
| 87 |
|
---|
| 88 | <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
|
---|
| 89 | <dependency>
|
---|
| 90 | <groupId>com.fasterxml.jackson.dataformat</groupId>
|
---|
| 91 | <artifactId>jackson-dataformat-smile</artifactId>
|
---|
| 92 | <version>${jackson-2-version}</version>
|
---|
| 93 | <scope>test</scope>
|
---|
| 94 | </dependency>
|
---|
| 95 | <!-- JAX-RS provider -->
|
---|
| 96 | <dependency>
|
---|
| 97 | <groupId>com.fasterxml.jackson.jaxrs</groupId>
|
---|
| 98 | <artifactId>jackson-jaxrs-json-provider</artifactId>
|
---|
| 99 | <version>${jackson-2-version}</version>
|
---|
| 100 | <scope>test</scope>
|
---|
| 101 | </dependency>
|
---|
| 102 | <!-- Support for JAX-B annotations as additional configuration -->
|
---|
| 103 | <dependency>
|
---|
| 104 | <groupId>com.fasterxml.jackson.module</groupId>
|
---|
| 105 | <artifactId>jackson-module-jaxb-annotations</artifactId>
|
---|
| 106 | <version>${jackson-2-version}</version>
|
---|
| 107 | <scope>test</scope>
|
---|
| 108 | </dependency>
|
---|
| 109 |
|
---|
| 110 |
|
---|
| 111 | </dependencies>
|
---|
[505] | 112 |
|
---|
| 113 | <build>
|
---|
| 114 | <plugins>
|
---|
| 115 | <plugin>
|
---|
| 116 | <groupId>org.codehaus.mojo</groupId>
|
---|
| 117 | <artifactId>build-helper-maven-plugin</artifactId>
|
---|
| 118 | <version>1.9.1</version>
|
---|
| 119 | <executions>
|
---|
| 120 | <execution>
|
---|
| 121 | <id>add-test-source</id>
|
---|
| 122 | <phase>generate-test-sources</phase>
|
---|
| 123 | <goals>
|
---|
| 124 | <goal>add-test-source</goal>
|
---|
| 125 | </goals>
|
---|
| 126 | <configuration>
|
---|
| 127 | <sources>
|
---|
| 128 | <source>src/test/javaactions</source>
|
---|
[506] | 129 | <source>src/test/value</source>
|
---|
[1237] | 130 | <source>src/test/endnego</source>
|
---|
| 131 | <source>src/test/endnego2</source>
|
---|
| 132 | <source>src/test/endnego3</source>
|
---|
[505] | 133 | </sources>
|
---|
| 134 | </configuration>
|
---|
| 135 | </execution>
|
---|
| 136 | </executions>
|
---|
| 137 | </plugin>
|
---|
| 138 | </plugins>
|
---|
| 139 |
|
---|
| 140 | </build>
|
---|
| 141 |
|
---|
| 142 |
|
---|
[1099] | 143 | </project>
|
---|