Skip to content

Commit d81e690

Browse files
committed
Java version is set to 8
1 parent 9be284b commit d81e690

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/pack.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v2
14-
- name: Set up JDK 7
14+
- name: Set up JDK 8
1515
uses: actions/setup-java@v2
1616
with:
1717
distribution: 'zulu'
18-
java-version: 7
18+
java-version: 8
1919
- name: Run tests
2020
run: mvn test -Dgroups=pipeline --batch-mode
2121
env:

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@v2
12-
- name: Set up JDK 7
12+
- name: Set up JDK 8
1313
uses: actions/setup-java@v2
1414
with:
1515
distribution: 'zulu'
16-
java-version: 7
16+
java-version: 8
1717
- name: Run tests
1818
run: mvn test -Dgroups=pipeline --batch-mode -q
1919
env:

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@
8181
<artifactId>maven-compiler-plugin</artifactId>
8282
<version>3.6.1</version>
8383
<configuration>
84-
<source>7</source>
85-
<target>7</target>
84+
<source>8</source>
85+
<target>8</target>
8686
</configuration>
8787
</plugin>
8888
<plugin>

0 commit comments

Comments
 (0)