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