Skip to content

Commit

Permalink
Fix IA-R8 Java target
Browse files Browse the repository at this point in the history
1.17.0 can only be run on Java 16, so IA-R8 needs to be compiled targeting Java 16
  • Loading branch information
NichtStudioCode committed May 30, 2024
1 parent 587669e commit 890e748
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inventoryaccess/inventory-access-r8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<artifactId>inventory-access-r8</artifactId>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<spigot.version>1.17-R0.1-SNAPSHOT</spigot.version>
</properties>

Expand Down

0 comments on commit 890e748

Please sign in to comment.