source: party/pom.xml@ 24

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

Fixes an issue with processing maxPower of a vote. Javadoc maven plugin now uses latest version.

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