source: java2python/tudutils-t/pom.xml@ 1111

Last change on this file since 1111 was 1111, checked in by wouter, 6 weeks ago

#363 fixes for py3.11 compatibility. All tests now seem working

File size: 6.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>tudutils-t</artifactId>
7 <version>1.0.1</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 <passwd>${env.ARTIFACTORY_PASS}</passwd>
17 </properties>
18
19
20 <distributionManagement>
21 <repository>
22 <id>artifactory.ewi.tudelft.nl</id>
23 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
24 </repository>
25 </distributionManagement>
26
27 <repositories>
28 <repository>
29 <id>artifactory.ewi.tudelft.nl</id>
30 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
31 <snapshots>
32 <enabled>false</enabled>
33 </snapshots>
34 </repository>
35 </repositories>
36
37 <pluginRepositories>
38 <pluginRepository>
39 <id>central</id>
40 <url>https://repo1.maven.org/maven2</url>
41 </pluginRepository>
42 <pluginRepository>
43 <id>jfrog-plugins-release</id>
44 <name>plugins-release</name>
45 <url>https://oss.jfrog.org/artifactory/plugins-release</url>
46 </pluginRepository>
47 </pluginRepositories>
48
49
50 <dependencies>
51 <dependency>
52 <groupId>tudelft.utilities.j2p</groupId>
53 <artifactId>core</artifactId>
54 <version>1.0.0</version>
55 </dependency>
56 <dependency>
57 <groupId>tudelft.utilities</groupId>
58 <artifactId>logging</artifactId>
59 <version>1.1.0</version>
60 </dependency>
61 <dependency>
62 <groupId>junit</groupId>
63 <artifactId>junit</artifactId>
64 <version>4.12</version>
65 <scope>test</scope>
66 </dependency>
67
68
69
70 <dependency>
71 <groupId>tudelft.utilities</groupId>
72 <artifactId>pyrunner</artifactId>
73 <version>1.2.1</version>
74 <scope>test</scope>
75 </dependency>
76
77 <dependency>
78 <groupId>com.fasterxml.jackson.core</groupId>
79 <artifactId>jackson-core</artifactId>
80 <version>${jackson-2-version}</version>
81 <scope>test</scope>
82 </dependency>
83
84 <!-- Just the annotations; use this dependency if you want to attach annotations
85 to classes without connecting them to the code. -->
86 <dependency>
87 <groupId>com.fasterxml.jackson.core</groupId>
88 <artifactId>jackson-annotations</artifactId>
89 <version>${jackson-2-version}</version>
90 <scope>test</scope>
91 </dependency>
92
93 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
94 <dependency>
95 <groupId>com.fasterxml.jackson.core</groupId>
96 <artifactId>jackson-databind</artifactId>
97 <version>${jackson-2-version}</version>
98 <scope>test</scope>
99 </dependency>
100
101 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
102 <dependency>
103 <groupId>com.fasterxml.jackson.dataformat</groupId>
104 <artifactId>jackson-dataformat-smile</artifactId>
105 <version>${jackson-2-version}</version>
106 <scope>test</scope>
107 </dependency>
108 <!-- JAX-RS provider -->
109 <dependency>
110 <groupId>com.fasterxml.jackson.jaxrs</groupId>
111 <artifactId>jackson-jaxrs-json-provider</artifactId>
112 <version>${jackson-2-version}</version>
113 <scope>test</scope>
114 </dependency>
115 <!-- Support for JAX-B annotations as additional configuration -->
116 <dependency>
117 <groupId>com.fasterxml.jackson.module</groupId>
118 <artifactId>jackson-module-jaxb-annotations</artifactId>
119 <version>${jackson-2-version}</version>
120 <scope>test</scope>
121 </dependency>
122
123
124 </dependencies>
125
126
127 <build>
128
129 <plugins>
130 <plugin>
131 <groupId>org.apache.maven.plugins</groupId>
132 <artifactId>maven-compiler-plugin</artifactId>
133 <version>3.8.0</version>
134 <configuration>
135 <source>1.8</source>
136 <target>1.8</target>
137 </configuration>
138 </plugin>
139
140 <plugin>
141 <groupId>org.apache.maven.plugins</groupId>
142 <artifactId>maven-source-plugin</artifactId>
143 <version>3.1.0</version>
144 <executions>
145 <execution>
146 <id>attach-sources</id>
147 <goals>
148 <goal>jar</goal>
149 </goals>
150 </execution>
151 </executions>
152 </plugin>
153
154 <plugin>
155 <groupId>org.apache.maven.plugins</groupId>
156 <artifactId>maven-javadoc-plugin</artifactId>
157 <version>2.10.1</version>
158 <executions>
159 <execution>
160 <id>attach-javadocs</id>
161 <goals>
162 <goal>jar</goal>
163 </goals>
164 <configuration>
165 <additionalparam>${javadoc.opts}</additionalparam>
166 <additionalparam>-Xdoclint:none</additionalparam>
167 </configuration>
168 </execution>
169 </executions>
170 </plugin>
171
172 <plugin>
173 <groupId>org.jfrog.buildinfo</groupId>
174 <artifactId>artifactory-maven-plugin</artifactId>
175 <version>3.2.3</version>
176 <executions>
177 <execution>
178 <id>build-info</id>
179 <goals>
180 <goal>publish</goal>
181 </goals>
182 <configuration>
183 <publisher>
184 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
185 <repoKey>libs-release</repoKey>
186 <username>wouter</username>
187 <password>${passwd}</password>
188 </publisher>
189 </configuration>
190 </execution>
191 </executions>
192 </plugin>
193
194 <plugin>
195 <groupId>org.apache.maven.plugins</groupId>
196 <artifactId>maven-assembly-plugin</artifactId>
197 <version>2.4.1</version>
198 <configuration>
199 <!-- get all project dependencies -->
200 <descriptorRefs>
201 <descriptorRef>jar-with-dependencies</descriptorRef>
202 </descriptorRefs>
203 <archive>
204 <manifest>
205 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
206 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
207 </manifest>
208 </archive>
209 </configuration>
210 <executions>
211 <execution>
212 <id>make-assembly</id>
213 <!-- bind to the packaging phase -->
214 <phase>package</phase>
215 <goals>
216 <goal>single</goal>
217 </goals>
218 </execution>
219 </executions>
220 </plugin>
221
222
223 </plugins>
224
225 <pluginManagement>
226 <plugins>
227 <plugin>
228 <groupId>org.eclipse.m2e</groupId>
229 <artifactId>lifecycle-mapping</artifactId>
230 <version>1.0.0</version>
231 <configuration>
232 <lifecycleMappingMetadata>
233 <pluginExecutions>
234 <pluginExecution>
235 <pluginExecutionFilter>
236 <groupId>org.jfrog.buildinfo</groupId>
237 <artifactId>artifactory-maven-plugin</artifactId>
238 <versionRange>[1.0.0,)</versionRange>
239 <goals>
240 <goal>publish</goal>
241 </goals>
242 </pluginExecutionFilter>
243 <action>
244 <ignore />
245 </action>
246 </pluginExecution>
247 </pluginExecutions>
248 </lifecycleMappingMetadata>
249 </configuration>
250 </plugin>
251 </plugins>
252 </pluginManagement>
253
254
255 </build>
256
257</project>
Note: See TracBrowser for help on using the repository browser.