source: timeline/pom.xml@ 28

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

minor fixes to improve extendability

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