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