Skip to content

Commit

Permalink
8.2.6
Browse files Browse the repository at this point in the history
- update jansi to prevent ExceptionInitializerError in JansiLoader.initialize(...)
  • Loading branch information
Osiris-Team committed Jul 28, 2024
1 parent 5feb8da commit b2e2abd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ AUTO-GENERATED FILE, CHANGES SHOULD BE DONE IN ./JPM.java or ./src/main/java/JPM
<modelVersion>4.0.0</modelVersion>
<groupId>com.osiris.autoplug.client</groupId>
<artifactId>AutoPlug-Client</artifactId>
<version>8.2.5</version>
<version>8.2.6</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>8</java.version>
<version>8.2.5</version>
<version>8.2.6</version>
<main-class>com.osiris.autoplug.client.Main</main-class>
<slf4j.version>2.0.13</slf4j.version>
<name>AutoPlug-Client</name>
Expand Down Expand Up @@ -63,7 +63,7 @@ AUTO-GENERATED FILE, CHANGES SHOULD BE DONE IN ./JPM.java or ./src/main/java/JPM
<dependency>
<groupId>com.github.Osiris-Team</groupId>
<artifactId>jansi</artifactId>
<version>2.4.5</version>
<version>2.4.6</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -126,7 +126,7 @@ AUTO-GENERATED FILE, CHANGES SHOULD BE DONE IN ./JPM.java or ./src/main/java/JPM
<dependency>
<groupId>com.github.Osiris-Team</groupId>
<artifactId>jansi</artifactId>
<version>2.4.5</version>
<version>2.4.6</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/JPM.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public ThisProject(List<String> args) {
// Override default configurations
this.groupId = "com.osiris.autoplug.client";
this.artifactId = "AutoPlug-Client";
this.version = "8.2.5";
this.version = "8.2.6";
this.mainClass = "com.osiris.autoplug.client.Main";
this.jarName = "AutoPlug-Client-original.jar";
this.fatJarName = "AutoPlug-Client.jar";
Expand All @@ -38,7 +38,7 @@ public ThisProject(List<String> args) {
forceImplementation("net.java.dev.jna:jna:5.14.0");
forceImplementation("net.java.dev.jna:jna-platform:5.14.0");
forceImplementation("commons-io:commons-io:2.16.1");
forceImplementation("com.github.Osiris-Team:jansi:2.4.5");
forceImplementation("com.github.Osiris-Team:jansi:2.4.6");
forceImplementation("org.jetbrains.kotlin:kotlin-stdlib:1.9.23");
forceImplementation("org.jetbrains.kotlin:kotlin-stdlib-common:1.9.23");
forceImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.21");
Expand All @@ -51,7 +51,7 @@ public ThisProject(List<String> args) {
implementation("net.java.dev.jna:jna:5.14.0");
implementation("net.java.dev.jna:jna-platform:5.14.0");
implementation("commons-io:commons-io:2.16.1");
implementation("com.github.Osiris-Team:jansi:2.4.5");
implementation("com.github.Osiris-Team:jansi:2.4.6");
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.9.23");
implementation("org.jetbrains.kotlin:kotlin-stdlib-common:1.9.23");
implementation("org.slf4j:slf4j-api:2.0.13");
Expand Down

0 comments on commit b2e2abd

Please sign in to comment.