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