source: ai2020/group17/pom.xml@ 5

Last change on this file since 5 was 5, checked in by wouter, 3 years ago

#1925 added group17 but I can't test it, it requires java9

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