Skip to content

Commit 3e99a01

Browse files
committed
Central version number and Java8
1 parent 7845c8d commit 3e99a01

File tree

1 file changed

+12
-32
lines changed

1 file changed

+12
-32
lines changed

pom.xml

+12-32
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
<name>Create Ensembl Bridge bundle</name>
1212

1313
<properties>
14-
<java.version>11</java.version>
14+
<java.version>8</java.version>
15+
<bridgedb.version>3.0.29-java8-SNAPSHOT</bridgedb.version>
16+
<derby.version>10.4.2.0</derby.version>
1517
</properties>
1618

1719
<build>
@@ -20,9 +22,9 @@
2022
<plugin>
2123
<groupId>org.apache.maven.plugins</groupId>
2224
<artifactId>maven-compiler-plugin</artifactId>
23-
<version>3.8.1</version>
25+
<version>3.13.0</version>
2426
<configuration>
25-
<release>11</release>
27+
<release>8</release>
2628
</configuration>
2729
</plugin>
2830
<plugin>
@@ -69,61 +71,39 @@
6971
<dependency>
7072
<groupId>org.bridgedb</groupId>
7173
<artifactId>org.bridgedb.bio</artifactId>
72-
<version>3.0.27-java8</version>
74+
<version>${bridgedb.version}</version>
7375
</dependency>
7476
<dependency>
7577
<groupId>org.bridgedb</groupId>
7678
<artifactId>org.bridgedb.rdb</artifactId>
77-
<version>3.0.27-java8</version>
79+
<version>${bridgedb.version}</version>
7880
</dependency>
7981
<dependency>
8082
<groupId>org.bridgedb</groupId>
8183
<artifactId>org.bridgedb.rdb.construct</artifactId>
82-
<version>3.0.27-java8</version>
84+
<version>${bridgedb.version}</version>
8385
</dependency>
8486
<dependency>
8587
<groupId>org.bridgedb</groupId>
8688
<artifactId>org.bridgedb.tools.qc</artifactId>
87-
<version>3.0.27</version>
88-
<exclusions>
89-
<exclusion>
90-
<groupId>org.bridgedb</groupId>
91-
<artifactId>org.bridgedb</artifactId>
92-
</exclusion>
93-
<exclusion>
94-
<groupId>org.bridgedb</groupId>
95-
<artifactId>org.bridgedb.bio</artifactId>
96-
</exclusion>
97-
<exclusion>
98-
<groupId>org.bridgedb</groupId>
99-
<artifactId>org.bridgedb.rdb</artifactId>
100-
</exclusion>
101-
<exclusion>
102-
<groupId>org.bridgedb</groupId>
103-
<artifactId>org.bridgedb.rdb.construct</artifactId>
104-
</exclusion>
105-
<exclusion>
106-
<groupId>org.apache.derby</groupId>
107-
<artifactId>derbyshared</artifactId>
108-
</exclusion>
109-
</exclusions>
89+
<version>${bridgedb.version}</version>
11090
</dependency>
11191
<dependency>
11292
<groupId>org.apache.derby</groupId>
11393
<artifactId>derby</artifactId>
114-
<version>10.4.2.0</version>
94+
<version>${derby.version}</version>
11595
<type>jar</type>
11696
<scope>runtime</scope>
11797
</dependency>
11898
<dependency>
11999
<groupId>org.apache.derby</groupId>
120100
<artifactId>derbyclient</artifactId>
121-
<version>10.4.2.0</version>
101+
<version>${derby.version}</version>
122102
</dependency>
123103
<dependency>
124104
<groupId>org.apache.derby</groupId>
125105
<artifactId>derbytools</artifactId>
126-
<version>10.4.2.0</version>
106+
<version>${derby.version}</version>
127107
</dependency>
128108
</dependencies>
129109
</project>

0 commit comments

Comments
 (0)