source: references/pom.xml@ 29

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

some minor fixes

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