Skip to content

Commit af0819a

Browse files
authored
Merge pull request #1238 from HubSpot/java-17
Target Java 17 with 2.8.0-SNAPSHOT
2 parents ab82426 + 8a1e234 commit af0819a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
java: [ 11, 17 ]
10+
java: [ 17 ]
1111
name: jdk-${{ matrix.java }}
1212
steps:
1313
- uses: actions/checkout@v3

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010

1111
<groupId>com.hubspot.jinjava</groupId>
1212
<artifactId>jinjava</artifactId>
13-
<version>2.7.5-SNAPSHOT</version>
13+
<version>2.8.0-SNAPSHOT</version>
1414
<description>Jinja templating engine implemented in Java</description>
1515

1616
<properties>
17-
<project.build.targetJdk>8</project.build.targetJdk>
18-
<project.build.releaseJdk>8</project.build.releaseJdk>
17+
<project.build.targetJdk>17</project.build.targetJdk>
18+
<project.build.releaseJdk>17</project.build.releaseJdk>
1919

2020
<dep.plugin.jacoco.version>0.8.3</dep.plugin.jacoco.version>
2121
<dep.plugin.javadoc.version>3.0.1</dep.plugin.javadoc.version>

0 commit comments

Comments
 (0)