source: exampleparties/humangui/pom.xml@ 33

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

Major update. Changes in json serialization, maven dependencies and BOA. Fix in stand-alone runner.

File size: 7.4 KB
RevLine 
[33]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>2.0.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.12.3</jackson-2-version>
19 <geniusweb.version>2.0.0</geniusweb.version>
20 </properties>
21
22 <distributionManagement>
23 <repository>
24 <id>artifactory.ewi.tudelft.nl</id>
25 <url>https://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.1</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.5</version>
118 <scope>test</scope>
119 </dependency>
120 </dependencies>
121
122
123 <repositories>
124 <repository>
125 <id>artifactory.ewi.tudelft.nl</id>
126 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
127 <snapshots>
128 <enabled>false</enabled>
129 </snapshots>
130 </repository>
131 </repositories>
132
133 <pluginRepositories>
134 <pluginRepository>
135 <id>central</id>
136 <url>https://repo1.maven.org/maven2</url>
137 </pluginRepository>
138 </pluginRepositories>
139
140
141 <build>
142
143 <plugins>
144 <plugin>
145 <groupId>org.apache.maven.plugins</groupId>
146 <artifactId>maven-compiler-plugin</artifactId>
147 <version>3.8.0</version>
148 <configuration>
149 <source>1.8</source>
150 <target>1.8</target>
151 </configuration>
152 </plugin>
153 <plugin>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-source-plugin</artifactId>
156 <version>3.1.0</version>
157 <executions>
158 <execution>
159 <id>attach-sources</id>
160 <goals>
161 <goal>jar</goal>
162 </goals>
163 </execution>
164 </executions>
165 </plugin>
166
167 <plugin>
168 <groupId>org.apache.maven.plugins</groupId>
169 <artifactId>maven-jar-plugin</artifactId>
170 <version>3.2.0</version>
171 <configuration>
172 <archive>
173 <manifest>
174 <mainClass>geniusweb.exampleparties.humangui.HumanGui</mainClass>
175 </manifest>
176 </archive>
177 </configuration>
178 </plugin>
179
180 <plugin>
181 <groupId>org.apache.maven.plugins</groupId>
182 <artifactId>maven-javadoc-plugin</artifactId>
183 <version>3.2.0</version>
184 <executions>
185 <execution>
186 <id>attach-javadocs</id>
187 <goals>
188 <goal>jar</goal>
189 </goals>
190 </execution>
191 </executions>
192 </plugin>
193
194 <plugin>
195 <groupId>org.jfrog.buildinfo</groupId>
196 <artifactId>artifactory-maven-plugin</artifactId>
197 <version>3.2.3</version>
198 <executions>
199 <execution>
200 <id>build-info</id>
201 <goals>
202 <goal>publish</goal>
203 </goals>
204 <configuration>
205 <publisher>
206 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
207 <repoKey>libs-release</repoKey>
208 <username>wouter</username>
209 <password>${passwd}</password>
210 </publisher>
211 </configuration>
212 </execution>
213 </executions>
214 </plugin>
215
216 <plugin>
217 <groupId>org.apache.maven.plugins</groupId>
218 <artifactId>maven-assembly-plugin</artifactId>
219 <version>2.4.1</version>
220 <configuration>
221 <!-- get all project dependencies -->
222 <descriptorRefs>
223 <descriptorRef>jar-with-dependencies</descriptorRef>
224 </descriptorRefs>
225 <archive>
226 <manifest>
227 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
228 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
229 <mainClass>geniusweb.exampleparties.humangui.HumanGui</mainClass>
230 </manifest>
231 </archive>
232 </configuration>
233 <executions>
234 <execution>
235 <id>make-assembly</id>
236 <!-- bind to the packaging phase -->
237 <phase>package</phase>
238 <goals>
239 <goal>single</goal>
240 </goals>
241 </execution>
242 </executions>
243 </plugin>
244
245
246 </plugins>
247
248 <pluginManagement>
249 <plugins>
250 <plugin>
251 <groupId>org.eclipse.m2e</groupId>
252 <artifactId>lifecycle-mapping</artifactId>
253 <version>1.0.0</version>
254 <configuration>
255 <lifecycleMappingMetadata>
256 <pluginExecutions>
257 <pluginExecution>
258 <pluginExecutionFilter>
259 <groupId>org.jfrog.buildinfo</groupId>
260 <artifactId>artifactory-maven-plugin</artifactId>
261 <versionRange>[1.0.0,)</versionRange>
262 <goals>
263 <goal>publish</goal>
264 </goals>
265 </pluginExecutionFilter>
266 <action>
267 <ignore />
268 </action>
269 </pluginExecution>
270 </pluginExecutions>
271 </lifecycleMappingMetadata>
272 </configuration>
273 </plugin>
274 </plugins>
275 </pluginManagement>
276
277
278 </build>
279</project>
Note: See TracBrowser for help on using the repository browser.