source: references/pom.xml@ 5

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

Fixed performance issue with some computers

File size: 6.6 KB
RevLine 
[1]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>
[5]136 <plugin>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-source-plugin</artifactId>
139 <executions>
140 <execution>
141 <id>attach-sources</id>
142 <goals>
143 <goal>jar</goal>
144 </goals>
145 </execution>
146 </executions>
147 </plugin>
[1]148
149 <plugin>
150 <groupId>org.apache.maven.plugins</groupId>
151 <artifactId>maven-javadoc-plugin</artifactId>
152 <version>2.10.1</version>
153 <executions>
154 <execution>
155 <id>attach-javadocs</id>
156 <goals>
157 <goal>jar</goal>
158 </goals>
159 <configuration>
160 <additionalparam>${javadoc.opts}</additionalparam>
161 <additionalparam>-Xdoclint:none</additionalparam>
162 </configuration>
163 </execution>
164 </executions>
165 </plugin>
166
167 <plugin>
168 <groupId>org.jfrog.buildinfo</groupId>
169 <artifactId>artifactory-maven-plugin</artifactId>
170 <version>2.6.1</version>
171 <executions>
172 <execution>
173 <id>build-info</id>
174 <goals>
175 <goal>publish</goal>
176 </goals>
177 <configuration>
178 <publisher>
179 <contextUrl>http://artifactory.ewi.tudelft.nl/artifactory</contextUrl>
180 <repoKey>libs-release</repoKey>
181 <username>wouter</username>
182 <password>${passwd}</password>
183 </publisher>
184 </configuration>
185 </execution>
186 </executions>
187 </plugin>
188
189 <plugin>
190 <groupId>org.apache.maven.plugins</groupId>
191 <artifactId>maven-assembly-plugin</artifactId>
192 <version>2.4.1</version>
193 <configuration>
194 <!-- get all project dependencies -->
195 <descriptorRefs>
196 <descriptorRef>jar-with-dependencies</descriptorRef>
197 </descriptorRefs>
198 <archive>
199 <manifest>
200 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
201 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
202 </manifest>
203 </archive>
204 </configuration>
205 <executions>
206 <execution>
207 <id>make-assembly</id>
208 <!-- bind to the packaging phase -->
209 <phase>package</phase>
210 <goals>
211 <goal>single</goal>
212 </goals>
213 </execution>
214 </executions>
215 </plugin>
216
217
218 </plugins>
219
220 <pluginManagement>
221 <plugins>
222 <plugin>
223 <groupId>org.eclipse.m2e</groupId>
224 <artifactId>lifecycle-mapping</artifactId>
225 <version>1.0.0</version>
226 <configuration>
227 <lifecycleMappingMetadata>
228 <pluginExecutions>
229 <pluginExecution>
230 <pluginExecutionFilter>
231 <groupId>org.jfrog.buildinfo</groupId>
232 <artifactId>artifactory-maven-plugin</artifactId>
233 <versionRange>[1.0.0,)</versionRange>
234 <goals>
235 <goal>publish</goal>
236 </goals>
237 </pluginExecutionFilter>
238 <action>
239 <ignore />
240 </action>
241 </pluginExecution>
242 </pluginExecutions>
243 </lifecycleMappingMetadata>
244 </configuration>
245 </plugin>
246 </plugins>
247 </pluginManagement>
248
249
250 </build>
251</project>
Note: See TracBrowser for help on using the repository browser.