source: issuevalue/pom.xml@ 20

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

Added BOA support, some bug 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>issuevalue</artifactId>
8 <version>1.4.4</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.4.4</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 <!-- the core, which includes Streaming API, shared low-level abstractions
32 (but NOT data-binding) -->
33 <dependency>
34 <groupId>com.fasterxml.jackson.core</groupId>
35 <artifactId>jackson-core</artifactId>
36 <version>${jackson-2-version}</version>
37 </dependency>
38
39 <!-- Just the annotations; use this dependency if you want to attach annotations
40 to classes without connecting them to the code. -->
41 <dependency>
42 <groupId>com.fasterxml.jackson.core</groupId>
43 <artifactId>jackson-annotations</artifactId>
44 <version>${jackson-2-version}</version>
45 </dependency>
46
47 <!-- databinding; ObjectMapper, JsonNode and related classes are here -->
48 <dependency>
49 <groupId>com.fasterxml.jackson.core</groupId>
50 <artifactId>jackson-databind</artifactId>
51 <version>${jackson-2-version}</version>
52 </dependency>
53
54 <!-- smile (binary JSON). Other artifacts in this group do other formats. -->
55 <dependency>
56 <groupId>com.fasterxml.jackson.dataformat</groupId>
57 <artifactId>jackson-dataformat-smile</artifactId>
58 <version>${jackson-2-version}</version>
59 </dependency>
60 <!-- JAX-RS provider -->
61 <dependency>
62 <groupId>com.fasterxml.jackson.jaxrs</groupId>
63 <artifactId>jackson-jaxrs-json-provider</artifactId>
64 <version>${jackson-2-version}</version>
65 </dependency>
66 <!-- Support for JAX-B annotations as additional configuration -->
67 <dependency>
68 <groupId>com.fasterxml.jackson.module</groupId>
69 <artifactId>jackson-module-jaxb-annotations</artifactId>
70 <version>${jackson-2-version}</version>
71 </dependency>
72 <dependency>
73 <groupId>junit</groupId>
74 <artifactId>junit</artifactId>
75 <version>4.12</version>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.mockito</groupId>
80 <artifactId>mockito-all</artifactId>
81 <version>1.9.5</version>
82 <scope>test</scope>
83 </dependency>
84
85
86 <dependency>
87 <groupId>tudelft.utilities</groupId>
88 <artifactId>junit</artifactId>
89 <version>1.0.3</version>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
93 <groupId>tudelft.utilities</groupId>
94 <artifactId>immutablelist</artifactId>
95 <version>1.1.0</version>
96 </dependency>
97
98 </dependencies>
99
100
101 <repositories>
102 <repository>
103 <id>artifactory.ewi.tudelft.nl</id>
104 <url>http://artifactory.ewi.tudelft.nl/artifactory/libs-release</url>
105 <snapshots>
106 <enabled>false</enabled>
107 </snapshots>
108 </repository>
109
110 </repositories>
111
112 <pluginRepositories>
113 <pluginRepository>
114 <id>jcenter</id>
115 <url>https://jcenter.bintray.com</url>
116 </pluginRepository>
117 </pluginRepositories>
118
119
120 <build>
121
122 <plugins>
123 <plugin>
124 <groupId>org.apache.maven.plugins</groupId>
125 <artifactId>maven-compiler-plugin</artifactId>
126 <version>3.8.0</version>
127 <configuration>
128 <source>1.8</source>
129 <target>1.8</target>
130 </configuration>
131 </plugin>
132
133 <plugin>
134 <groupId>org.apache.maven.plugins</groupId>
135 <artifactId>maven-source-plugin</artifactId>
136 <version>3.1.0</version>
137 <executions>
138 <execution>
139 <id>attach-sources</id>
140 <goals>
141 <goal>jar</goal>
142 </goals>
143 </execution>
144 </executions>
145 </plugin>
146
147 <plugin>
148 <groupId>org.apache.maven.plugins</groupId>
149 <artifactId>maven-javadoc-plugin</artifactId>
150 <version>2.10.1</version>
151 <executions>
152 <execution>
153 <id>attach-javadocs</id>
154 <goals>
155 <goal>jar</goal>
156 </goals>
157 <configuration>
158 <additionalparam>${javadoc.opts}</additionalparam>
159 <additionalparam>-Xdoclint:none</additionalparam>
160 </configuration>
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.