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.4</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 | <j2p-version>${project.version}</j2p-version>
|
---|
16 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
---|
17 | </properties>
|
---|
18 |
|
---|
19 |
|
---|
20 | <repositories>
|
---|
21 | <repository>
|
---|
22 | <id>artifactory.ewi.tudelft.nl</id>
|
---|
23 | <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
|
---|
24 | <snapshots>
|
---|
25 | <enabled>false</enabled>
|
---|
26 | </snapshots>
|
---|
27 | </repository>
|
---|
28 | </repositories>
|
---|
29 |
|
---|
30 |
|
---|
31 | <dependencies>
|
---|
32 | <dependency>
|
---|
33 | <groupId>tudelft.utilities.j2p</groupId>
|
---|
34 | <artifactId>core</artifactId>
|
---|
35 | <version>${j2p-version}</version>
|
---|
36 | </dependency>
|
---|
37 |
|
---|
38 | <dependency>
|
---|
39 | <groupId>tudelft.utilities.j2p</groupId>
|
---|
40 | <artifactId>junit-t</artifactId>
|
---|
41 | <version>${j2p-version}</version>
|
---|
42 | </dependency>
|
---|
43 |
|
---|
44 | <dependency>
|
---|
45 | <groupId>junit</groupId>
|
---|
46 | <artifactId>junit</artifactId>
|
---|
47 | <version>4.12</version>
|
---|
48 | <scope>test</scope>
|
---|
49 | </dependency>
|
---|
50 |
|
---|
51 | <dependency>
|
---|
52 | <groupId>tudelft.utilities</groupId>
|
---|
53 | <artifactId>logging</artifactId>
|
---|
54 | <version>1.1.0</version>
|
---|
55 | </dependency>
|
---|
56 |
|
---|
57 | <dependency>
|
---|
58 | <groupId>tudelft.utilities</groupId>
|
---|
59 | <artifactId>pyrunner</artifactId>
|
---|
60 | <version>1.2.1</version>
|
---|
61 | <scope>test</scope>
|
---|
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>
|
---|
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>
|
---|
129 | <source>src/test/value</source>
|
---|
130 | <source>src/test/endnegotiation</source>
|
---|
131 | </sources>
|
---|
132 | </configuration>
|
---|
133 | </execution>
|
---|
134 | </executions>
|
---|
135 | </plugin>
|
---|
136 | </plugins>
|
---|
137 |
|
---|
138 | </build>
|
---|
139 |
|
---|
140 |
|
---|
141 | </project>
|
---|