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