source: java2python/core/pom.xml@ 403

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

#122 refactoring

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