-
Notifications
You must be signed in to change notification settings - Fork 21
/
pom-java8.xml
113 lines (109 loc) · 4.01 KB
/
pom-java8.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.bridgedb</groupId>
<artifactId>bridgedb-bundle-pv</artifactId>
<packaging>pom</packaging>
<version>3.0.22</version>
<name>BridgeDb 4 PathVisio bundle</name>
<description>
BridgeDb is a framework for finding and mapping equivalent database
identifiers. It has many facets: it is both a framework, live services,
and are identifier mapping files for genes, proteins, and metabolites.
</description>
<url>http://www.bridgedb.org/</url>
<inceptionYear>2006</inceptionYear>
<modules>
<module>org.bridgedb</module>
<module>org.bridgedb.bio</module>
<module>org.bridgedb.gui</module>
<module>org.bridgedb.rdb</module>
<module>org.bridgedb.rdb.construct</module>
<module>org.bridgedb.webservice.bridgerest</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<commons-cli.version>1.2</commons-cli.version>
<cxf.version>3.2.14</cxf.version>
<hamcrest.version>2.2</hamcrest.version>
<jersey.version>1.10</jersey.version>
<log4j.version>2.20.0</log4j.version>
<mysql.version>8.0.33</mysql.version>
<netbeans.hint.deploy.server>Tomcat</netbeans.hint.deploy.server>
<owlapi-api.version>3.4</owlapi-api.version>
<rdf4j.version>3.7.7</rdf4j.version>
<servlet.version>2.5</servlet.version>
<slf4j.version>1.6.4</slf4j.version>
<derby.version>10.14.2.0</derby.version>
<junit-platform-surefire-provider>1.3.2</junit-platform-surefire-provider>
<junit5.jupiter.version>5.10.0</junit5.jupiter.version>
<junit5.excludeGroups>mysql</junit5.excludeGroups>
<junit5.groups />
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<directory>target</directory>
<outputDirectory>target/classes</outputDirectory>
<finalName>${project.artifactId}-${project.version}</finalName>
<testOutputDirectory>target/test-classes</testOutputDirectory>
<sourceDirectory>src</sourceDirectory>
<scriptSourceDirectory>scripts</scriptSourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<resources>
<resource>
<directory>resources</directory>
</resource>
</resources>
<testResources>
<testResource>
<directory>test-data</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
<configuration>
<testFailureIgnore>false</testFailureIgnore>
<forkCount>1</forkCount>
<groups>${junit5.groups}</groups>
<excludedGroups>${junit5.excludeGroups}</excludedGroups>
</configuration>
</plugin>
</plugins>
</build>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
</project>