Skip to content

Commit

Permalink
Upgrades to jdk11
Browse files Browse the repository at this point in the history
  • Loading branch information
damianszczepanik committed Jan 4, 2024
1 parent d0940e4 commit 73191f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
build:
strategy:
matrix:
java: [ '8', '11']
java: [ '11', '17', '21' ]
os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest' ]

runs-on: ${{ matrix.os }}
Expand Down
16 changes: 4 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

<properties>
<commons-collections.version>3.2.2</commons-collections.version>

<gitHubRepo>damianszczepanik/maven-cucumber-reporting</gitHubRepo>
</properties>

Expand Down Expand Up @@ -101,15 +102,6 @@
</build>
</profile>

<profile>
<id>disable-java8-doclint</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<doclint>none</doclint>
</properties>
</profile>
</profiles>

<build>
Expand All @@ -119,8 +111,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>11</source>
<target>11</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
Expand All @@ -142,7 +134,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<configuration>
<source>8</source>
<doclint>none</doclint>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 73191f6

Please sign in to comment.