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