source: party/pom.xml@ 32

Last change on this file since 32 was 32, checked in by bart, 3 years ago

Multiple learns with repeated tournament, maven use https.

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