source: protocol/pom.xml@ 8

Last change on this file since 8 was 6, checked in by bart, 5 years ago

Fix pom source-plugin version nr

File size: 7.3 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.0.0</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.6</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.0.0</version>
34 </dependency>
35 <dependency>
36 <groupId>geniusweb</groupId>
37 <artifactId>party</artifactId>
38 <version>1.0.0</version>
39 </dependency>
40 <dependency>
41 <groupId>tudelft.utilities</groupId>
42 <artifactId>listener</artifactId>
43 <version>1.0.0</version>
44 </dependency>
45 <dependency>
46 <groupId>geniusweb</groupId>
47 <artifactId>references</artifactId>
48 <version>1.0.0</version>
49 </dependency>
50 <dependency>
51 <groupId>geniusweb</groupId>
52 <artifactId>events</artifactId>
53 <version>1.0.0</version>
54 </dependency>
55 <dependency>
56 <groupId>tudelft.utilities</groupId>
57 <artifactId>immutablelist</artifactId>
58 <version>1.0.1</version>
59 </dependency>
60 <dependency>
61 <groupId>tudelft.utilities</groupId>
62 <artifactId>logging</artifactId>
63 <version>1.0.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>http://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
163 <plugin>
164 <groupId>org.apache.maven.plugins</groupId>
165 <artifactId>maven-javadoc-plugin</artifactId>
166 <version>2.10.1</version>
167 <executions>
168 <execution>
169 <id>attach-javadocs</id>
170 <goals>
171 <goal>jar</goal>
172 </goals>
173 <configuration>
174 <additionalparam>${javadoc.opts}</additionalparam>
175 <additionalparam>-Xdoclint:none</additionalparam>
176 </configuration>
177 </execution>
178 </executions>
179 </plugin>
180
181 <plugin>
182 <groupId>org.apache.maven.plugins</groupId>
183 <artifactId>maven-source-plugin</artifactId>
184 <version>3.1.0</version>
185 <executions>
186 <execution>
187 <id>attach-sources</id>
188 <goals>
189 <goal>jar</goal>
190 </goals>
191 </execution>
192 </executions>
193 </plugin>
194
195 <plugin>
196 <groupId>org.jfrog.buildinfo</groupId>
197 <artifactId>artifactory-maven-plugin</artifactId>
198 <version>2.6.1</version>
199 <executions>
200 <execution>
201 <id>build-info</id>
202 <goals>
203 <goal>publish</goal>
204 </goals>
205 <configuration>
206 <publisher>
207 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
208 <repoKey>libs-release</repoKey>
209 <username>wouter</username>
210 <password>${passwd}</password>
211 </publisher>
212 </configuration>
213 </execution>
214 </executions>
215 </plugin>
216
217 <plugin>
218 <groupId>org.apache.maven.plugins</groupId>
219 <artifactId>maven-assembly-plugin</artifactId>
220 <version>2.4.1</version>
221 <configuration>
222 <!-- get all project dependencies -->
223 <descriptorRefs>
224 <descriptorRef>jar-with-dependencies</descriptorRef>
225 </descriptorRefs>
226 <archive>
227 <manifest>
228 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
229 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
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.