source: anac2020/TheDiceHaggler/pom.xml@ 77

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

#2068 bump to 2.1.3. Taken pompfan out of maintenance as it uses custom NegoRunner

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