Skip to content

Commit b87bc82

Browse files
committed
downgrade to java 17
1 parent 5f6961b commit b87bc82

5 files changed

Lines changed: 10 additions & 6 deletions

File tree

.flattened-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>dev.pixelib</groupId>
66
<artifactId>reflection-path</artifactId>
7-
<version>${revision}</version>
7+
<version>1.0.0</version>
88
<name>ReflectionPath</name>
99
<description>The easiest reflection util you'll ever use</description>
1010
<url>https://github.com/pixelib/ReflectionPath</url>

.github/workflows/maven.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
- uses: actions/checkout@v3
2424
with:
2525
ref: ${{ github.event.pull_request.head.ref }}
26-
- name: Set up JDK 18
26+
- name: Set up JDK 17
2727
uses: actions/setup-java@v3
2828
with:
29-
java-version: '18'
29+
java-version: '17'
3030
distribution: 'temurin'
3131
cache: maven
3232

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Set up Maven Central Repository
1212
uses: actions/setup-java@v3
1313
with:
14-
java-version: '18'
14+
java-version: '17'
1515
distribution: 'temurin'
1616
server-id: ossrh
1717
server-username: MAVEN_USERNAME

.idea/workspace.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
</scm>
3737

3838
<properties>
39-
<maven.compiler.source>18</maven.compiler.source>
40-
<maven.compiler.target>18</maven.compiler.target>
39+
<maven.compiler.source>17</maven.compiler.source>
40+
<maven.compiler.target>17</maven.compiler.target>
4141
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4242
</properties>
4343

0 commit comments

Comments
 (0)