source: timeline/pom.xml@ 33

Last change on this file since 33 was 33, checked in by bart, 3 years ago

Major update. Changes in json serialization, maven dependencies and BOA. Fix in stand-alone runner.

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>2.0.0</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.12.3</jackson-2-version>
18 <geniusweb.version>2.0.0</geniusweb.version>
19 </properties>
20
21 <distributionManagement>
22 <repository>
23 <id>artifactory.ewi.tudelft.nl</id>
24 <url>https://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.5</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>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
98 <snapshots>
99 <enabled>false</enabled>
100 </snapshots>
101 </repository>
102 </repositories>
103
104 <pluginRepositories>
105 <pluginRepository>
106 <id>central</id>
107 <url>https://repo1.maven.org/maven2</url>
108 </pluginRepository>
109 </pluginRepositories>
110
111 <build>
112
113 <plugins>
114 <plugin>
115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-compiler-plugin</artifactId>
117 <version>3.8.0</version>
118 <configuration>
119 <source>1.8</source>
120 <target>1.8</target>
121 </configuration>
122 </plugin>
123 <plugin>
124 <groupId>org.apache.maven.plugins</groupId>
125 <artifactId>maven-source-plugin</artifactId>
126 <version>3.1.0</version>
127 <executions>
128 <execution>
129 <id>attach-sources</id>
130 <goals>
131 <goal>jar</goal>
132 </goals>
133 </execution>
134 </executions>
135 </plugin>
136
137 <plugin>
138 <groupId>org.apache.maven.plugins</groupId>
139 <artifactId>maven-javadoc-plugin</artifactId>
140 <version>3.2.0</version>
141 <executions>
142 <execution>
143 <id>attach-javadocs</id>
144 <goals>
145 <goal>jar</goal>
146 </goals>
147 </execution>
148 </executions>
149 </plugin>
150
151 <plugin>
152 <groupId>org.jfrog.buildinfo</groupId>
153 <artifactId>artifactory-maven-plugin</artifactId>
154 <version>3.2.3</version>
155 <executions>
156 <execution>
157 <id>build-info</id>
158 <goals>
159 <goal>publish</goal>
160 </goals>
161 <configuration>
162 <publisher>
163 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
164 <repoKey>libs-release</repoKey>
165 <username>wouter</username>
166 <password>${passwd}</password>
167 </publisher>
168 </configuration>
169 </execution>
170 </executions>
171 </plugin>
172
173 <plugin>
174 <groupId>org.apache.maven.plugins</groupId>
175 <artifactId>maven-assembly-plugin</artifactId>
176 <version>2.4.1</version>
177 <configuration>
178 <!-- get all project dependencies -->
179 <descriptorRefs>
180 <descriptorRef>jar-with-dependencies</descriptorRef>
181 </descriptorRefs>
182 <archive>
183 <manifest>
184 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
185 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
186 </manifest>
187 </archive>
188 </configuration>
189 <executions>
190 <execution>
191 <id>make-assembly</id>
192 <!-- bind to the packaging phase -->
193 <phase>package</phase>
194 <goals>
195 <goal>single</goal>
196 </goals>
197 </execution>
198 </executions>
199 </plugin>
200
201
202 </plugins>
203
204 <pluginManagement>
205 <plugins>
206 <plugin>
207 <groupId>org.eclipse.m2e</groupId>
208 <artifactId>lifecycle-mapping</artifactId>
209 <version>1.0.0</version>
210 <configuration>
211 <lifecycleMappingMetadata>
212 <pluginExecutions>
213 <pluginExecution>
214 <pluginExecutionFilter>
215 <groupId>org.jfrog.buildinfo</groupId>
216 <artifactId>artifactory-maven-plugin</artifactId>
217 <versionRange>[1.0.0,)</versionRange>
218 <goals>
219 <goal>publish</goal>
220 </goals>
221 </pluginExecutionFilter>
222 <action>
223 <ignore />
224 </action>
225 </pluginExecution>
226 </pluginExecutions>
227 </lifecycleMappingMetadata>
228 </configuration>
229 </plugin>
230 </plugins>
231 </pluginManagement>
232
233
234 </build>
235
236</project>
Note: See TracBrowser for help on using the repository browser.