Skip to content

Commit

Permalink
release v23.12 (#929)
Browse files Browse the repository at this point in the history
* fix tracked id
* downgrade support to java 17
  • Loading branch information
andrei1058 authored Dec 1, 2023
1 parent a6bd4a4 commit dbd8382
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class MetricsManager {
private final Metrics metrics;

private MetricsManager(BedWars plugin) {
metrics = new Metrics(plugin, 97320);
metrics = new Metrics(plugin, 1885);

// base metrics
metrics.addCustomChart(new SimplePie("server_type", () -> BedWars.getServerType().toString()));
Expand Down
8 changes: 4 additions & 4 deletions versionsupport_v1_20_R1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<artifactId>versionsupport_v1_20_R1</artifactId>

<properties>
<maven.compiler.source>1.17</maven.compiler.source>
<maven.compiler.target>1.17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down Expand Up @@ -54,8 +54,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>19</source>
<target>19</target>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
</plugins>
Expand Down
8 changes: 4 additions & 4 deletions versionsupport_v1_20_R2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<artifactId>versionsupport_v1_20_R2</artifactId>

<properties>
<maven.compiler.source>1.17</maven.compiler.source>
<maven.compiler.target>1.17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down Expand Up @@ -54,8 +54,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<source>19</source>
<target>19</target>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit dbd8382

Please sign in to comment.