Skip to content
This repository was archived by the owner on Jun 21, 2022. It is now read-only.

Commit db79319

Browse files
committed
Simpler JAR name
1 parent 4ab03b9 commit db79319

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Either use the checked in IntelliJ run-configuration in *.run* or launch it manu
7373
```shell
7474
$ mvn clean package
7575
$ cd target/
76-
$ java -jar gateway-rsocket-websocket-0.0.1-SNAPSHOT.jar
76+
$ java -jar gateway-rsocket-websocket.jar
7777
```
7878

7979
#### KeyCloak
@@ -83,7 +83,7 @@ Run the KeyCloak using `docker-compose up` and start the server afterwards:
8383
```shell
8484
$ mvn clean package
8585
$ cd target/
86-
$ java -jar -Dspring.profiles.active=keycloak gateway-rsocket-websocket-0.0.1-SNAPSHOT.jar
86+
$ java -jar -Dspring.profiles.active=keycloak gateway-rsocket-websocket.jar
8787
```
8888

8989
### Client (Node v14.16.0 & NPM v6.14.11)

pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,17 @@
100100
<plugin>
101101
<groupId>org.springframework.boot</groupId>
102102
<artifactId>spring-boot-maven-plugin</artifactId>
103+
<executions>
104+
<execution>
105+
<id>repackage</id>
106+
<goals>
107+
<goal>repackage</goal>
108+
</goals>
109+
<configuration>
110+
<finalName>${artifactId}</finalName>
111+
</configuration>
112+
</execution>
113+
</executions>
103114
<configuration>
104115
<excludes>
105116
<exclude>

0 commit comments

Comments
 (0)