source: java2python/pom.xml@ 361

Last change on this file since 361 was 361, checked in by wouter, 2 years ago

#110 added ImmutableList translator temporarily to the current project to see if we can get all working

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</groupId>
6 <artifactId>j2p</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 <dependencies>
19
20 <dependency>
21 <groupId>com.github.javaparser</groupId>
22 <artifactId>javaparser-symbol-solver-core</artifactId>
23 <version>3.24.2</version>
24 </dependency>
25 <dependency>
26 <groupId>junit</groupId>
27 <artifactId>junit</artifactId>
28 <version>4.12</version>
29 <scope>test</scope>
30 </dependency>
31
32 <!-- FIXME this should be removed when we have separated the utilities
33 translator -->
34 <dependency>
35 <groupId>tudelft.utilities</groupId>
36 <artifactId>utilities</artifactId>
37 <version>1.2.1</version>
38 </dependency>
39
40
41 <dependency>
42 <groupId>tudelft.utilities</groupId>
43 <artifactId>pyrunner</artifactId>
44 <version>1.0.2</version>
45 <scope>test</scope>
46 </dependency>
47
48 <dependency>
49 <groupId>com.fasterxml.jackson.core</groupId>
50 <artifactId>jackson-core</artifactId>
51 <version>${jackson-2-version}</version>
52 <scope>test</scope>
53 </dependency>
54
55 <!-- Just the annotations; use this dependency if you want to attach annotations
56 to classes without connecting them to the code. -->
57 <dependency>
58 <groupId>com.fasterxml.jackson.core</groupId>
59 <artifactId>jackson-annotations</artifactId>
60 <version>${jackson-2-version}</version>
61 <scope>test</scope>
62 </dependency>
63
64 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
65 <dependency>
66 <groupId>com.fasterxml.jackson.core</groupId>
67 <artifactId>jackson-databind</artifactId>
68 <version>${jackson-2-version}</version>
69 <scope>test</scope>
70 </dependency>
71
72 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
73 <dependency>
74 <groupId>com.fasterxml.jackson.dataformat</groupId>
75 <artifactId>jackson-dataformat-smile</artifactId>
76 <version>${jackson-2-version}</version>
77 <scope>test</scope>
78 </dependency>
79 <!-- JAX-RS provider -->
80 <dependency>
81 <groupId>com.fasterxml.jackson.jaxrs</groupId>
82 <artifactId>jackson-jaxrs-json-provider</artifactId>
83 <version>${jackson-2-version}</version>
84 <scope>test</scope>
85 </dependency>
86 <!-- Support for JAX-B annotations as additional configuration -->
87 <dependency>
88 <groupId>com.fasterxml.jackson.module</groupId>
89 <artifactId>jackson-module-jaxb-annotations</artifactId>
90 <version>${jackson-2-version}</version>
91 <scope>test</scope>
92 </dependency>
93
94
95 </dependencies>
96</project>
Note: See TracBrowser for help on using the repository browser.