source: references/pom.xml@ 2

Last change on this file since 2 was 1, checked in by bart, 5 years ago

Initial Release

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