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