source: references/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.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>references</artifactId>
8 <version>2.0.0</version> <!-- must equal ${geniusweb.version} -->
9 <packaging>jar</packaging>
10
11
12 <properties>
13 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14 <maven.compiler.target>1.8</maven.compiler.target>
15 <maven.compiler.source>1.8</maven.compiler.source>
16 <basedir>.</basedir>
17 <passwd>${env.ARTIFACTORY_PASS}</passwd>
18 <jackson-2-version>2.12.3</jackson-2-version>
19 <geniusweb.version>2.0.0</geniusweb.version>
20 </properties>
21
22 <distributionManagement>
23 <repository>
24 <id>artifactory.ewi.tudelft.nl</id>
25 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
26 </repository>
27 </distributionManagement>
28
29
30 <dependencies>
31 <dependency>
32 <groupId>tudelft.utilities</groupId>
33 <artifactId>utilities</artifactId>
34 <version>1.1.0</version>
35 </dependency>
36 <!-- the core, which includes Streaming API, shared low-level abstractions
37 (but NOT data-binding) -->
38 <dependency>
39 <groupId>com.fasterxml.jackson.core</groupId>
40 <artifactId>jackson-core</artifactId>
41 <version>${jackson-2-version}</version>
42 </dependency>
43
44 <!-- Just the annotations; use this dependency if you want to attach annotations
45 to classes without connecting them to the code. -->
46 <dependency>
47 <groupId>com.fasterxml.jackson.core</groupId>
48 <artifactId>jackson-annotations</artifactId>
49 <version>${jackson-2-version}</version>
50 </dependency>
51
52 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
53 <dependency>
54 <groupId>com.fasterxml.jackson.core</groupId>
55 <artifactId>jackson-databind</artifactId>
56 <version>${jackson-2-version}</version>
57 </dependency>
58
59 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
60 <dependency>
61 <groupId>com.fasterxml.jackson.dataformat</groupId>
62 <artifactId>jackson-dataformat-smile</artifactId>
63 <version>${jackson-2-version}</version>
64 </dependency>
65 <!-- JAX-RS provider -->
66 <dependency>
67 <groupId>com.fasterxml.jackson.jaxrs</groupId>
68 <artifactId>jackson-jaxrs-json-provider</artifactId>
69 <version>${jackson-2-version}</version>
70 </dependency>
71 <!-- Support for JAX-B annotations as additional configuration -->
72 <dependency>
73 <groupId>com.fasterxml.jackson.module</groupId>
74 <artifactId>jackson-module-jaxb-annotations</artifactId>
75 <version>${jackson-2-version}</version>
76 </dependency>
77 <dependency>
78 <groupId>junit</groupId>
79 <artifactId>junit</artifactId>
80 <version>4.12</version>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.mockito</groupId>
85 <artifactId>mockito-all</artifactId>
86 <version>1.9.5</version>
87 <scope>test</scope>
88 </dependency>
89 <dependency>
90 <groupId>tudelft.utilities</groupId>
91 <artifactId>junit</artifactId>
92 <version>1.0.5</version>
93 <scope>test</scope>
94 </dependency>
95
96
97 </dependencies>
98
99
100 <repositories>
101 <repository>
102 <id>artifactory.ewi.tudelft.nl</id>
103 <url>https://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
104 <snapshots>
105 <enabled>false</enabled>
106 </snapshots>
107 </repository>
108 </repositories>
109
110 <pluginRepositories>
111 <pluginRepository>
112 <id>central</id>
113 <url>https://repo1.maven.org/</url>
114 </pluginRepository>
115 </pluginRepositories>
116
117 <build>
118
119 <plugins>
120 <plugin>
121 <groupId>org.apache.maven.plugins</groupId>
122 <artifactId>maven-compiler-plugin</artifactId>
123 <version>3.8.0</version>
124 <configuration>
125 <source>1.8</source>
126 <target>1.8</target>
127 </configuration>
128 </plugin>
129 <plugin>
130 <groupId>org.apache.maven.plugins</groupId>
131 <artifactId>maven-source-plugin</artifactId>
132 <version>3.1.0</version>
133 <executions>
134 <execution>
135 <id>attach-sources</id>
136 <goals>
137 <goal>jar</goal>
138 </goals>
139 </execution>
140 </executions>
141 </plugin>
142
143 <plugin>
144 <groupId>org.apache.maven.plugins</groupId>
145 <artifactId>maven-javadoc-plugin</artifactId>
146 <version>3.2.0</version>
147 <executions>
148 <execution>
149 <id>attach-javadocs</id>
150 <goals>
151 <goal>jar</goal>
152 </goals>
153 </execution>
154 </executions>
155 </plugin>
156
157 <plugin>
158 <groupId>org.jfrog.buildinfo</groupId>
159 <artifactId>artifactory-maven-plugin</artifactId>
160 <version>3.2.3</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</project>
Note: See TracBrowser for help on using the repository browser.