Skip to content
This repository has been archived by the owner on Jul 7, 2021. It is now read-only.

Commit

Permalink
Fix #328 update travis to openjdk11 (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccostin93 authored Jul 23, 2020
1 parent 62fdb5b commit eeaa69e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ language: java
os:
- linux
jdk:
- openjdk8
- openjdk11
cache:
directories:
- "$HOME/.m2/repository"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,4 @@ See the License for the specific language governing permissions and
limitations under the License.


[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgit.luolix.top%2Fproshin-roman%2Ffinapi-java-client.svg?type=large)](https://app.fossa.io/projects/git%2Bgit.luolix.top%2Fproshin-roman%2Ffinapi-java-client?ref=badge_large)
[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgit.luolix.top%2Fproshin-roman%2Ffinapi-java-client.svg?type=large)](https://app.fossa.io/projects/git%2Bgit.luolix.top%2Fproshin-roman%2Ffinapi-java-client?ref=badge_large)
6 changes: 4 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>8</maven.compiler.source>
</properties>

<groupId>org.proshin</groupId>
Expand Down Expand Up @@ -144,8 +145,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.source}</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
Expand Down Expand Up @@ -295,6 +296,7 @@
<configuration>
<encoding>UTF-8</encoding>
<additionalJOption>-Xdoclint:none</additionalJOption>
<source>${maven.compiler.source}</source>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit eeaa69e

Please sign in to comment.