source: protocol/pom.xml

Last change on this file was 52, checked in by ruud, 14 months ago

Fixed small issues in domaineditor.

File size: 7.8 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.1.6</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>${project.version}</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.2.1</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-core</artifactId>
123 <version>3.11.2</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 <pluginRepository>
147 <id>artifactory.ewi.tudelft.nl</id>
148 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
149 </pluginRepository>
150 </pluginRepositories>
151
152 <build>
153
154 <plugins>
155 <plugin>
156 <groupId>org.apache.maven.plugins</groupId>
157 <artifactId>maven-compiler-plugin</artifactId>
158 <version>3.8.0</version>
159 <configuration>
160 <source>1.8</source>
161 <target>1.8</target>
162 </configuration>
163 </plugin>
164 <plugin>
165 <groupId>org.apache.maven.plugins</groupId>
166 <artifactId>maven-enforcer-plugin</artifactId>
167 <version>3.0.0-M2</version>
168 <executions>
169 <execution>
170 <id>enforce</id>
171 <configuration>
172 <rules>
173 <dependencyConvergence />
174 </rules>
175 </configuration>
176 <goals>
177 <goal>enforce</goal>
178 </goals>
179 </execution>
180 </executions>
181 </plugin>
182 <plugin>
183 <groupId>org.apache.maven.plugins</groupId>
184 <artifactId>maven-javadoc-plugin</artifactId>
185 <version>3.2.0</version>
186 <executions>
187 <execution>
188 <id>attach-javadocs</id>
189 <goals>
190 <goal>jar</goal>
191 </goals>
192 </execution>
193 </executions>
194 </plugin>
195
196 <plugin>
197 <groupId>org.apache.maven.plugins</groupId>
198 <artifactId>maven-source-plugin</artifactId>
199 <version>3.1.0</version>
200 <executions>
201 <execution>
202 <id>attach-sources</id>
203 <goals>
204 <goal>jar</goal>
205 </goals>
206 </execution>
207 </executions>
208 </plugin>
209
210 <plugin>
211 <groupId>org.jfrog.buildinfo</groupId>
212 <artifactId>artifactory-maven-plugin</artifactId>
213 <version>3.2.3</version>
214 <executions>
215 <execution>
216 <id>build-info</id>
217 <goals>
218 <goal>publish</goal>
219 </goals>
220 <configuration>
221 <publisher>
222 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
223 <repoKey>libs-release</repoKey>
224 <username>wouter</username>
225 <password>${passwd}</password>
226 </publisher>
227 </configuration>
228 </execution>
229 </executions>
230 </plugin>
231
232 <plugin>
233 <groupId>org.apache.maven.plugins</groupId>
234 <artifactId>maven-assembly-plugin</artifactId>
235 <version>2.4.1</version>
236 <configuration>
237 <!-- get all project dependencies -->
238 <descriptorRefs>
239 <descriptorRef>jar-with-dependencies</descriptorRef>
240 </descriptorRefs>
241 <archive>
242 <manifest>
243 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
244 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
245 </manifest>
246 </archive>
247 </configuration>
248 <executions>
249 <execution>
250 <id>make-assembly</id>
251 <!-- bind to the packaging phase -->
252 <phase>package</phase>
253 <goals>
254 <goal>single</goal>
255 </goals>
256 </execution>
257 </executions>
258 </plugin>
259
260
261 </plugins>
262
263 <pluginManagement>
264 <plugins>
265 <plugin>
266 <groupId>org.eclipse.m2e</groupId>
267 <artifactId>lifecycle-mapping</artifactId>
268 <version>1.0.0</version>
269 <configuration>
270 <lifecycleMappingMetadata>
271 <pluginExecutions>
272 <pluginExecution>
273 <pluginExecutionFilter>
274 <groupId>org.jfrog.buildinfo</groupId>
275 <artifactId>artifactory-maven-plugin</artifactId>
276 <versionRange>[1.0.0,)</versionRange>
277 <goals>
278 <goal>publish</goal>
279 </goals>
280 </pluginExecutionFilter>
281 <action>
282 <ignore />
283 </action>
284 </pluginExecution>
285 </pluginExecutions>
286 </lifecycleMappingMetadata>
287 </configuration>
288 </plugin>
289 </plugins>
290 </pluginManagement>
291
292
293 </build>
294</project>
Note: See TracBrowser for help on using the repository browser.