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

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

#161 restructuring test code, each test program in its own dir.

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