Skip to content

Commit 38f883f

Browse files
committed
version
1 parent f5d2092 commit 38f883f

File tree

2 files changed

+25
-23
lines changed

2 files changed

+25
-23
lines changed

pom.xml

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
34

45
<modelVersion>4.0.0</modelVersion>
56

67
<groupId>com.styx</groupId>
78
<artifactId>styx</artifactId>
8-
<version>0.0.4</version>
9+
<version>0.0.5</version>
910
<packaging>jar</packaging>
1011

1112
<name>com.styx</name>
@@ -82,27 +83,28 @@
8283
</executions>
8384
</plugin>
8485

85-
86+
8687
<plugin>
87-
<groupId>org.apache.maven.plugins</groupId>
88-
<artifactId>maven-shade-plugin</artifactId>
89-
<version>3.5.1</version>
90-
<executions>
91-
<execution>
92-
<phase>package</phase>
93-
<goals>
94-
<goal>shade</goal>
95-
</goals>
96-
<configuration>
97-
<createDependencyReducedPom>true</createDependencyReducedPom>
98-
<transformers>
99-
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
100-
<mainClass>com.styx.MainKt</mainClass>
101-
</transformer>
102-
</transformers>
103-
</configuration>
104-
</execution>
105-
</executions>
88+
<groupId>org.apache.maven.plugins</groupId>
89+
<artifactId>maven-shade-plugin</artifactId>
90+
<version>3.5.1</version>
91+
<executions>
92+
<execution>
93+
<phase>package</phase>
94+
<goals>
95+
<goal>shade</goal>
96+
</goals>
97+
<configuration>
98+
<createDependencyReducedPom>true</createDependencyReducedPom>
99+
<transformers>
100+
<transformer
101+
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
102+
<mainClass>com.styx.MainKt</mainClass>
103+
</transformer>
104+
</transformers>
105+
</configuration>
106+
</execution>
107+
</executions>
106108
</plugin>
107109
</plugins>
108110
</build>

src/main/kotlin/com/styx/ui/GameLauncher.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ class GameLauncher : JFrame("Styx") {
323323
private fun showAboutDialog() {
324324
val message = """
325325
<html>
326-
<h2>Styx v0.0.4</h2>
326+
<h2>Styx v0.0.5</h2>
327327
<p>A game launcher for Linux</p>
328328
<br />
329329
<p>By Navid M</p>

0 commit comments

Comments
 (0)