source: issuevalue/pom.xml@ 4

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

Faster example parties

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>issuevalue</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 <!-- 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
85 <dependency>
86 <groupId>tudelft.utilities</groupId>
87 <artifactId>junit</artifactId>
88 <version>1.0.2</version>
89 <scope>test</scope>
90 </dependency>
91 <dependency>
92 <groupId>tudelft.utilities</groupId>
93 <artifactId>immutablelist</artifactId>
94 <version>1.0.1</version>
95 </dependency>
96
97 </dependencies>
98
99
100 <repositories>
101 <repository>
102 <id>artifactory.ewi.tudelft.nl</id>
103 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
104 <snapshots>
105 <enabled>false</enabled>
106 </snapshots>
107 </repository>
108
109 </repositories>
110
111 <pluginRepositories>
112 <pluginRepository>
113 <id>jcenter</id>
114 <url>http://jcenter.bintray.com</url>
115 </pluginRepository>
116 </pluginRepositories>
117
118
119 <build>
120
121 <plugins>
122 <plugin>
123 <groupId>org.apache.maven.plugins</groupId>
124 <artifactId>maven-compiler-plugin</artifactId>
125 <version>3.8.0</version>
126 <configuration>
127 <source>1.8</source>
128 <target>1.8</target>
129 </configuration>
130 </plugin>
131
132 <plugin>
133 <groupId>org.apache.maven.plugins</groupId>
134 <artifactId>maven-source-plugin</artifactId>
135 <executions>
136 <execution>
137 <id>attach-sources</id>
138 <goals>
139 <goal>jar</goal>
140 </goals>
141 </execution>
142 </executions>
143 </plugin>
144
145 <plugin>
146 <groupId>org.apache.maven.plugins</groupId>
147 <artifactId>maven-javadoc-plugin</artifactId>
148 <version>2.10.1</version>
149 <executions>
150 <execution>
151 <id>attach-javadocs</id>
152 <goals>
153 <goal>jar</goal>
154 </goals>
155 <configuration>
156 <additionalparam>${javadoc.opts}</additionalparam>
157 <additionalparam>-Xdoclint:none</additionalparam>
158 </configuration>
159 </execution>
160 </executions>
161 </plugin>
162
163 <plugin>
164 <groupId>org.jfrog.buildinfo</groupId>
165 <artifactId>artifactory-maven-plugin</artifactId>
166 <version>2.6.1</version>
167 <executions>
168 <execution>
169 <id>build-info</id>
170 <goals>
171 <goal>publish</goal>
172 </goals>
173 <configuration>
174 <publisher>
175 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
176 <repoKey>libs-release</repoKey>
177 <username>wouter</username>
178 <password>${passwd}</password>
179 </publisher>
180 </configuration>
181 </execution>
182 </executions>
183 </plugin>
184
185 <plugin>
186 <groupId>org.apache.maven.plugins</groupId>
187 <artifactId>maven-assembly-plugin</artifactId>
188 <version>2.4.1</version>
189 <configuration>
190 <!-- get all project dependencies -->
191 <descriptorRefs>
192 <descriptorRef>jar-with-dependencies</descriptorRef>
193 </descriptorRefs>
194 <archive>
195 <manifest>
196 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
197 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
198 </manifest>
199 </archive>
200 </configuration>
201 <executions>
202 <execution>
203 <id>make-assembly</id>
204 <!-- bind to the packaging phase -->
205 <phase>package</phase>
206 <goals>
207 <goal>single</goal>
208 </goals>
209 </execution>
210 </executions>
211 </plugin>
212
213
214 </plugins>
215
216 <pluginManagement>
217 <plugins>
218 <plugin>
219 <groupId>org.eclipse.m2e</groupId>
220 <artifactId>lifecycle-mapping</artifactId>
221 <version>1.0.0</version>
222 <configuration>
223 <lifecycleMappingMetadata>
224 <pluginExecutions>
225 <pluginExecution>
226 <pluginExecutionFilter>
227 <groupId>org.jfrog.buildinfo</groupId>
228 <artifactId>artifactory-maven-plugin</artifactId>
229 <versionRange>[1.0.0,)</versionRange>
230 <goals>
231 <goal>publish</goal>
232 </goals>
233 </pluginExecutionFilter>
234 <action>
235 <ignore />
236 </action>
237 </pluginExecution>
238 </pluginExecutions>
239 </lifecycleMappingMetadata>
240 </configuration>
241 </plugin>
242 </plugins>
243 </pluginManagement>
244
245
246 </build>
247</project>
Note: See TracBrowser for help on using the repository browser.