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