source: protocol/pom.xml@ 23

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

Version 1.5.2

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