source: TraumaOntologies/pom.xml@ 4

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

Added traumaontologies

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