source: voting/pom.xml@ 31

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

New protocols Learn and APPLearn. Fixed memory leak.

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