source: bidspace/pom.xml

Last change on this file was 54, checked in by ruud, 2 months ago

Modifications for automatic java to python conversion. Overloaded methods now have different names.

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