source: exampleparties/humangui/pom.xml@ 21

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

Version 1.5.

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