Skip to content

Commit

Permalink
Merge pull request #22 from kentago/patch-1
Browse files Browse the repository at this point in the history
Introduce Java 15
  • Loading branch information
Stromner authored Feb 24, 2021
2 parents 0773d5c + 34ad2c3 commit 9ef10ba
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 13
- name: Set up JDK 15
uses: actions/setup-java@v1
with:
java-version: 13
java-version: 15
- name: Build with Maven
run: mvn -B package --file pom.xml
14 changes: 9 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.1.RELEASE</version>
<version>2.3.5.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>

Expand All @@ -24,7 +24,7 @@
</modules>

<properties>
<java.version>13</java.version>
<java.version>15</java.version>
</properties>

<dependencies>
Expand All @@ -34,9 +34,13 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>2.4.1</version>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>15</source>
<target>15</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>

0 comments on commit 9ef10ba

Please sign in to comment.