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