Skip to content

Commit ffc495a

Browse files
authored
Merge pull request #45 from utPLSQL/feature/switch_to_openjdk
Feature/switch to openjdk
2 parents b6d378e + 2ff15fe commit ffc495a

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
- docker
66

77
jdk:
8-
- oraclejdk8
8+
- openjdk9
99

1010
addons:
1111
sonarcloud:

pom.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,29 @@
4848
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4949
<maven.version>3.5.0</maven.version>
5050
<java.version>1.8</java.version>
51-
<powermock.version>1.7.4</powermock.version>
51+
<powermock.version>2.0.0-beta.5</powermock.version>
5252
<ojdbc.version>12.2.0.1</ojdbc.version>
5353
</properties>
5454

5555
<dependencies>
56+
<dependency>
57+
<groupId>com.sun.xml.bind</groupId>
58+
<artifactId>jaxb-core</artifactId>
59+
<version>2.3.0.1</version>
60+
</dependency>
61+
62+
<dependency>
63+
<groupId>javax.xml.bind</groupId>
64+
<artifactId>jaxb-api</artifactId>
65+
<version>2.3.1</version>
66+
</dependency>
67+
68+
<dependency>
69+
<groupId>com.sun.xml.bind</groupId>
70+
<artifactId>jaxb-impl</artifactId>
71+
<version>2.3.1</version>
72+
</dependency>
73+
5674
<dependency>
5775
<groupId>com.oracle.jdbc</groupId>
5876
<artifactId>ojdbc8</artifactId>

0 commit comments

Comments
 (0)