source: timeline/pom.xml@ 20

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

Added BOA support, some bug fixes

File size: 6.5 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.4.4</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.4.4</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>2.10.1</version>
143 <executions>
144 <execution>
145 <id>attach-javadocs</id>
146 <goals>
147 <goal>jar</goal>
148 </goals>
149 <configuration>
150 <additionalparam>${javadoc.opts}</additionalparam>
151 <additionalparam>-Xdoclint:none</additionalparam>
152 </configuration>
153 </execution>
154 </executions>
155 </plugin>
156
157 <plugin>
158 <groupId>org.jfrog.buildinfo</groupId>
159 <artifactId>artifactory-maven-plugin</artifactId>
160 <version>2.6.1</version>
161 <executions>
162 <execution>
163 <id>build-info</id>
164 <goals>
165 <goal>publish</goal>
166 </goals>
167 <configuration>
168 <publisher>
169 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
170 <repoKey>libs-release</repoKey>
171 <username>wouter</username>
172 <password>${passwd}</password>
173 </publisher>
174 </configuration>
175 </execution>
176 </executions>
177 </plugin>
178
179 <plugin>
180 <groupId>org.apache.maven.plugins</groupId>
181 <artifactId>maven-assembly-plugin</artifactId>
182 <version>2.4.1</version>
183 <configuration>
184 <!-- get all project dependencies -->
185 <descriptorRefs>
186 <descriptorRef>jar-with-dependencies</descriptorRef>
187 </descriptorRefs>
188 <archive>
189 <manifest>
190 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
191 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
192 </manifest>
193 </archive>
194 </configuration>
195 <executions>
196 <execution>
197 <id>make-assembly</id>
198 <!-- bind to the packaging phase -->
199 <phase>package</phase>
200 <goals>
201 <goal>single</goal>
202 </goals>
203 </execution>
204 </executions>
205 </plugin>
206
207
208 </plugins>
209
210 <pluginManagement>
211 <plugins>
212 <plugin>
213 <groupId>org.eclipse.m2e</groupId>
214 <artifactId>lifecycle-mapping</artifactId>
215 <version>1.0.0</version>
216 <configuration>
217 <lifecycleMappingMetadata>
218 <pluginExecutions>
219 <pluginExecution>
220 <pluginExecutionFilter>
221 <groupId>org.jfrog.buildinfo</groupId>
222 <artifactId>artifactory-maven-plugin</artifactId>
223 <versionRange>[1.0.0,)</versionRange>
224 <goals>
225 <goal>publish</goal>
226 </goals>
227 </pluginExecutionFilter>
228 <action>
229 <ignore />
230 </action>
231 </pluginExecution>
232 </pluginExecutions>
233 </lifecycleMappingMetadata>
234 </configuration>
235 </plugin>
236 </plugins>
237 </pluginManagement>
238
239
240 </build>
241
242</project>
Note: See TracBrowser for help on using the repository browser.