Skip to content

Commit

Permalink
Merge pull request #61 from glenrobson/java_11
Browse files Browse the repository at this point in the history
Java 11
  • Loading branch information
glenrobson authored Jun 11, 2020
2 parents 8add7ba + fc1e94d commit eadeef0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ before_script: travis/install_solrcloud.sh
after_script: travis/stop_solr.sh
language: java
jdk:
- openjdk8
- openjdk11
script: mvn clean test
18 changes: 16 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,21 @@
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.0</version>
</dependency>
</dependencies>
<build>
<finalName>simpleAnnotationStore</finalName>
Expand Down Expand Up @@ -166,8 +181,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<release>11</release>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit eadeef0

Please sign in to comment.