source: exampleparties/randomparty/pom.xml@ 14

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

Release 1.4.0

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