source: java2python/jackson-t/pom.xml@ 453

Last change on this file since 453 was 453, checked in by wouter, 17 months ago

#125 #128 fix compilation issue- add ref to our artifactory

File size: 2.9 KB
Line 
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
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
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>
38 <groupId>junit</groupId>
39 <artifactId>junit</artifactId>
40 <version>4.12</version>
41 <scope>test</scope>
42 </dependency>
43
44
45
46 <dependency>
47 <groupId>tudelft.utilities</groupId>
48 <artifactId>pyrunner</artifactId>
49 <version>1.0.3</version>
50 </dependency>
51
52 <dependency>
53 <groupId>com.fasterxml.jackson.core</groupId>
54 <artifactId>jackson-core</artifactId>
55 <version>${jackson-2-version}</version>
56 <scope>test</scope>
57 </dependency>
58
59 <!-- Just the annotations; use this dependency if you want to attach annotations
60 to classes without connecting them to the code. -->
61 <dependency>
62 <groupId>com.fasterxml.jackson.core</groupId>
63 <artifactId>jackson-annotations</artifactId>
64 <version>${jackson-2-version}</version>
65 <scope>test</scope>
66 </dependency>
67
68 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
69 <dependency>
70 <groupId>com.fasterxml.jackson.core</groupId>
71 <artifactId>jackson-databind</artifactId>
72 <version>${jackson-2-version}</version>
73 <scope>test</scope>
74 </dependency>
75
76 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
77 <dependency>
78 <groupId>com.fasterxml.jackson.dataformat</groupId>
79 <artifactId>jackson-dataformat-smile</artifactId>
80 <version>${jackson-2-version}</version>
81 <scope>test</scope>
82 </dependency>
83 <!-- JAX-RS provider -->
84 <dependency>
85 <groupId>com.fasterxml.jackson.jaxrs</groupId>
86 <artifactId>jackson-jaxrs-json-provider</artifactId>
87 <version>${jackson-2-version}</version>
88 <scope>test</scope>
89 </dependency>
90 <!-- Support for JAX-B annotations as additional configuration -->
91 <dependency>
92 <groupId>com.fasterxml.jackson.module</groupId>
93 <artifactId>jackson-module-jaxb-annotations</artifactId>
94 <version>${jackson-2-version}</version>
95 <scope>test</scope>
96 </dependency>
97
98
99 </dependencies>
100</project>
Note: See TracBrowser for help on using the repository browser.