source: protocol/pom.xml@ 19

Last change on this file since 19 was 19, checked in by bart, 4 years ago

Tries harder to kill parties after deadline

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