source: protocol/pom.xml@ 13

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

All refs to bintray now use https

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>1.3.1</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.10</jackson-2-version>
19 </properties>
20
21 <distributionManagement>
22 <repository>
23 <id>artifactory.ewi.tudelft.nl</id>
24 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
25 </repository>
26 </distributionManagement>
27
28 <dependencies>
29
30 <dependency>
31 <groupId>geniusweb</groupId>
32 <artifactId>profile</artifactId>
33 <version>1.3.1</version>
34 </dependency>
35 <dependency>
36 <groupId>geniusweb</groupId>
37 <artifactId>party</artifactId>
38 <version>1.3.1</version>
39 </dependency>
40 <dependency>
41 <groupId>geniusweb</groupId>
42 <artifactId>references</artifactId>
43 <version>1.3.1</version>
44 </dependency>
45 <dependency>
46 <groupId>geniusweb</groupId>
47 <artifactId>events</artifactId>
48 <version>1.3.1</version>
49 </dependency>
50 <dependency>
51 <groupId>tudelft.utilities</groupId>
52 <artifactId>immutablelist</artifactId>
53 <version>1.0.1</version>
54 </dependency>
55 <dependency>
56 <groupId>tudelft.utilities</groupId>
57 <artifactId>logging</artifactId>
58 <version>1.0.0</version>
59 </dependency>
60 <dependency>
61 <groupId>tudelft.utilities</groupId>
62 <artifactId>listener</artifactId>
63 <version>1.1.0</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.2</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>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
135 <snapshots>
136 <enabled>false</enabled>
137 </snapshots>
138 </repository>
139
140 </repositories>
141
142 <pluginRepositories>
143 <pluginRepository>
144 <id>jcenter</id>
145 <url>https://jcenter.bintray.com</url>
146 </pluginRepository>
147 </pluginRepositories>
148
149
150 <build>
151
152 <plugins>
153 <plugin>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-compiler-plugin</artifactId>
156 <version>3.8.0</version>
157 <configuration>
158 <source>1.8</source>
159 <target>1.8</target>
160 </configuration>
161 </plugin>
162 <plugin>
163 <groupId>org.apache.maven.plugins</groupId>
164 <artifactId>maven-enforcer-plugin</artifactId>
165 <version>3.0.0-M2</version>
166 <executions>
167 <execution>
168 <id>enforce</id>
169 <configuration>
170 <rules>
171 <dependencyConvergence />
172 </rules>
173 </configuration>
174 <goals>
175 <goal>enforce</goal>
176 </goals>
177 </execution>
178 </executions>
179 </plugin>
180 <plugin>
181 <groupId>org.apache.maven.plugins</groupId>
182 <artifactId>maven-javadoc-plugin</artifactId>
183 <version>2.10.1</version>
184 <executions>
185 <execution>
186 <id>attach-javadocs</id>
187 <goals>
188 <goal>jar</goal>
189 </goals>
190 <configuration>
191 <additionalparam>${javadoc.opts}</additionalparam>
192 <additionalparam>-Xdoclint:none</additionalparam>
193 </configuration>
194 </execution>
195 </executions>
196 </plugin>
197
198 <plugin>
199 <groupId>org.apache.maven.plugins</groupId>
200 <artifactId>maven-source-plugin</artifactId>
201 <version>3.1.0</version>
202 <executions>
203 <execution>
204 <id>attach-sources</id>
205 <goals>
206 <goal>jar</goal>
207 </goals>
208 </execution>
209 </executions>
210 </plugin>
211
212 <plugin>
213 <groupId>org.jfrog.buildinfo</groupId>
214 <artifactId>artifactory-maven-plugin</artifactId>
215 <version>2.6.1</version>
216 <executions>
217 <execution>
218 <id>build-info</id>
219 <goals>
220 <goal>publish</goal>
221 </goals>
222 <configuration>
223 <publisher>
224 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
225 <repoKey>libs-release</repoKey>
226 <username>wouter</username>
227 <password>${passwd}</password>
228 </publisher>
229 </configuration>
230 </execution>
231 </executions>
232 </plugin>
233
234 <plugin>
235 <groupId>org.apache.maven.plugins</groupId>
236 <artifactId>maven-assembly-plugin</artifactId>
237 <version>2.4.1</version>
238 <configuration>
239 <!-- get all project dependencies -->
240 <descriptorRefs>
241 <descriptorRef>jar-with-dependencies</descriptorRef>
242 </descriptorRefs>
243 <archive>
244 <manifest>
245 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
246 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
247 </manifest>
248 </archive>
249 </configuration>
250 <executions>
251 <execution>
252 <id>make-assembly</id>
253 <!-- bind to the packaging phase -->
254 <phase>package</phase>
255 <goals>
256 <goal>single</goal>
257 </goals>
258 </execution>
259 </executions>
260 </plugin>
261
262
263 </plugins>
264
265 <pluginManagement>
266 <plugins>
267 <plugin>
268 <groupId>org.eclipse.m2e</groupId>
269 <artifactId>lifecycle-mapping</artifactId>
270 <version>1.0.0</version>
271 <configuration>
272 <lifecycleMappingMetadata>
273 <pluginExecutions>
274 <pluginExecution>
275 <pluginExecutionFilter>
276 <groupId>org.jfrog.buildinfo</groupId>
277 <artifactId>artifactory-maven-plugin</artifactId>
278 <versionRange>[1.0.0,)</versionRange>
279 <goals>
280 <goal>publish</goal>
281 </goals>
282 </pluginExecutionFilter>
283 <action>
284 <ignore />
285 </action>
286 </pluginExecution>
287 </pluginExecutions>
288 </lifecycleMappingMetadata>
289 </configuration>
290 </plugin>
291 </plugins>
292 </pluginManagement>
293
294
295 </build>
296</project>
Note: See TracBrowser for help on using the repository browser.