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

Last change on this file since 877 was 877, checked in by wouter, 5 months ago

yupdate versions, use scope=test

File size: 3.8 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>tudelft.utilities.j2p</groupId>
39 <artifactId>junit-t</artifactId>
40 <version>1.0.0</version>
41 </dependency>
42
43 <dependency>
44 <groupId>junit</groupId>
45 <artifactId>junit</artifactId>
46 <version>4.12</version>
47 <scope>test</scope>
48 </dependency>
49
50 <dependency>
51 <groupId>tudelft.utilities</groupId>
52 <artifactId>logging</artifactId>
53 <version>1.0.2</version>
54 </dependency>
55
56 <dependency>
57 <groupId>tudelft.utilities</groupId>
58 <artifactId>pyrunner</artifactId>
59 <version>1.1.1</version>
60 <scope>test</scope>
61 </dependency>
62
63 <dependency>
64 <groupId>com.fasterxml.jackson.core</groupId>
65 <artifactId>jackson-core</artifactId>
66 <version>${jackson-2-version}</version>
67 <scope>test</scope>
68 </dependency>
69
70 <!-- Just the annotations; use this dependency if you want to attach annotations
71 to classes without connecting them to the code. -->
72 <dependency>
73 <groupId>com.fasterxml.jackson.core</groupId>
74 <artifactId>jackson-annotations</artifactId>
75 <version>${jackson-2-version}</version>
76 <scope>test</scope>
77 </dependency>
78
79 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
80 <dependency>
81 <groupId>com.fasterxml.jackson.core</groupId>
82 <artifactId>jackson-databind</artifactId>
83 <version>${jackson-2-version}</version>
84 <scope>test</scope>
85 </dependency>
86
87 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
88 <dependency>
89 <groupId>com.fasterxml.jackson.dataformat</groupId>
90 <artifactId>jackson-dataformat-smile</artifactId>
91 <version>${jackson-2-version}</version>
92 <scope>test</scope>
93 </dependency>
94 <!-- JAX-RS provider -->
95 <dependency>
96 <groupId>com.fasterxml.jackson.jaxrs</groupId>
97 <artifactId>jackson-jaxrs-json-provider</artifactId>
98 <version>${jackson-2-version}</version>
99 <scope>test</scope>
100 </dependency>
101 <!-- Support for JAX-B annotations as additional configuration -->
102 <dependency>
103 <groupId>com.fasterxml.jackson.module</groupId>
104 <artifactId>jackson-module-jaxb-annotations</artifactId>
105 <version>${jackson-2-version}</version>
106 <scope>test</scope>
107 </dependency>
108
109
110 </dependencies>
111
112 <build>
113 <plugins>
114 <plugin>
115 <groupId>org.codehaus.mojo</groupId>
116 <artifactId>build-helper-maven-plugin</artifactId>
117 <version>1.9.1</version>
118 <executions>
119 <execution>
120 <id>add-test-source</id>
121 <phase>generate-test-sources</phase>
122 <goals>
123 <goal>add-test-source</goal>
124 </goals>
125 <configuration>
126 <sources>
127 <source>src/test/javaactions</source>
128 <source>src/test/value</source>
129 <source>src/test/endnegotiation</source>
130 </sources>
131 </configuration>
132 </execution>
133 </executions>
134 </plugin>
135 </plugins>
136
137 </build>
138
139
140</project>
Note: See TracBrowser for help on using the repository browser.