Skip to content

Commit

Permalink
downgraded bungee to 1.19; downgraded to jdk17
Browse files Browse the repository at this point in the history
  • Loading branch information
eric2788 committed Nov 4, 2024
1 parent 5a3464e commit 8e98b60
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/checkout@v4
- uses: eric2788/maven-jar-publish@v3
with:
java-version: 18
java-version: 17
body: added multiple distribution management
upload-module: './groovier-plugin'
- name: 'Update javadocs'
Expand All @@ -46,7 +46,7 @@ jobs:
separator: '.'
- uses: actions/setup-java@v2
with:
java-version: '18'
java-version: '17'
distribution: 'adopt'
- uses: whelk-io/maven-settings-xml-action@main
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 18
java-version: 17
- name: 'Package Jar'
run: mvn -B package --file ./pom.xml
- name: 'upload artifacts'
Expand Down
6 changes: 3 additions & 3 deletions groovier-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<artifactId>groovier-engine</artifactId>

<properties>
<maven.compiler.source>18</maven.compiler.source>
<maven.compiler.target>18</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>


Expand All @@ -40,4 +40,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
4 changes: 2 additions & 2 deletions groovier-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<version>${project.parent.version}.2</version>

<properties>
<maven.compiler.source>18</maven.compiler.source>
<maven.compiler.target>18</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>


Expand Down
6 changes: 3 additions & 3 deletions groovier-scripts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<artifactId>groovier-scripts</artifactId>

<properties>
<maven.compiler.source>18</maven.compiler.source>
<maven.compiler.target>18</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<build>
Expand All @@ -30,4 +30,4 @@
</plugins>
</build>

</project>
</project>
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</modules>

<properties>
<java.version>18</java.version>
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down Expand Up @@ -101,7 +101,7 @@
<configuration>
<links>
<link>https://google.github.io/guice/api-docs/latest/javadoc/</link>
<link>https://docs.oracle.com/en/java/javase/18/docs/api/</link>
<link>https://docs.oracle.com/en/java/javase/17/docs/api/</link>
<link>https://docs.oracle.com/javaee/6/api/javax/inject/</link>
<link>https://docs.groovy-lang.org/latest/html/api/</link>
</links>
Expand Down Expand Up @@ -237,7 +237,7 @@
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-api</artifactId>
<version>1.21-R0.1-SNAPSHOT</version>
<version>1.19-R0.1-SNAPSHOT</version>
<type>jar</type>
<scope>provided</scope>
</dependency>
Expand Down

0 comments on commit 8e98b60

Please sign in to comment.