Skip to content

Commit

Permalink
Fix a dependency issue. (1.24.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
e3ndr committed Feb 15, 2024
1 parent aaa4da5 commit a9a8f86
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ www/
logs/
config.json
latest.log
ssl/
ssl/
dependency-reduced-pom.xml
19 changes: 16 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>co.casterlabs</groupId>
<artifactId>Katana</artifactId>
<version>1.24.1</version>
<version>1.24.2</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand All @@ -14,14 +14,27 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.1</version>
<version>3.4.0</version>
<executions>
<execution>
<id>shade</id>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
<configuration>
Expand Down Expand Up @@ -95,7 +108,7 @@
<dependency>
<groupId>co.casterlabs</groupId>
<artifactId>Rakurai-Http-Server</artifactId>
<version>2.1.3</version>
<version>2.1.4</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/co/casterlabs/katana/Katana.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

@Getter
public class Katana {
public static final String VERSION = "1.24.1";
public static final String VERSION = "1.24.2";
public static final String SERVER_DECLARATION = String.format("Katana/%s (%s)", Katana.VERSION, System.getProperty("os.name", "Generic"));

private CommandRegistry<Void> commandRegistry = new CommandRegistry<>();
Expand Down

0 comments on commit a9a8f86

Please sign in to comment.