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