Remove websocket from project names, fix main class
This commit is contained in:
parent
710922622c
commit
f6f028d680
2
Procfile
2
Procfile
@ -1 +1 @@
|
||||
web: java -jar server/target/lingo-websocket-server.jar
|
||||
web: java -jar server/target/lingo-server.jar
|
||||
|
@ -4,18 +4,18 @@
|
||||
|
||||
<parent>
|
||||
<groupId>com.charego</groupId>
|
||||
<artifactId>lingo-websocket</artifactId>
|
||||
<artifactId>lingo-parent</artifactId>
|
||||
<version>1.0</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>lingo-websocket-client-api</artifactId>
|
||||
<name>Lingo WebSocket :: Client API</name>
|
||||
<artifactId>lingo-client-api</artifactId>
|
||||
<name>Lingo :: Client API</name>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<version>${project.version}</version>
|
||||
<artifactId>lingo-websocket-common</artifactId>
|
||||
<artifactId>lingo-common</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
@ -4,12 +4,12 @@
|
||||
|
||||
<parent>
|
||||
<groupId>com.charego</groupId>
|
||||
<artifactId>lingo-websocket</artifactId>
|
||||
<artifactId>lingo-parent</artifactId>
|
||||
<version>1.0</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>lingo-websocket-client</artifactId>
|
||||
<name>Lingo WebSocket :: Client</name>
|
||||
<artifactId>lingo-client</artifactId>
|
||||
<name>Lingo :: Client</name>
|
||||
|
||||
<properties>
|
||||
<javafx.version>11.0.2</javafx.version>
|
||||
@ -19,7 +19,7 @@
|
||||
<dependency>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<version>${project.version}</version>
|
||||
<artifactId>lingo-websocket-client-api</artifactId>
|
||||
<artifactId>lingo-client-api</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- Web -->
|
||||
|
@ -4,12 +4,12 @@
|
||||
|
||||
<parent>
|
||||
<groupId>com.charego</groupId>
|
||||
<artifactId>lingo-websocket</artifactId>
|
||||
<artifactId>lingo-parent</artifactId>
|
||||
<version>1.0</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>lingo-websocket-common</artifactId>
|
||||
<name>Lingo WebSocket :: Common</name>
|
||||
<artifactId>lingo-common</artifactId>
|
||||
<name>Lingo :: Common</name>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
|
4
pom.xml
4
pom.xml
@ -9,11 +9,11 @@
|
||||
</parent>
|
||||
|
||||
<groupId>com.charego</groupId>
|
||||
<artifactId>lingo-websocket</artifactId>
|
||||
<artifactId>lingo-parent</artifactId>
|
||||
<version>1.0</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<name>Lingo WebSocket</name>
|
||||
<name>Lingo</name>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
@ -4,18 +4,18 @@
|
||||
|
||||
<parent>
|
||||
<groupId>com.charego</groupId>
|
||||
<artifactId>lingo-websocket</artifactId>
|
||||
<artifactId>lingo-parent</artifactId>
|
||||
<version>1.0</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>lingo-websocket-server</artifactId>
|
||||
<name>Lingo WebSocket :: Server</name>
|
||||
<artifactId>lingo-server</artifactId>
|
||||
<name>Lingo :: Server</name>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<version>${project.version}</version>
|
||||
<artifactId>lingo-websocket-client-api</artifactId>
|
||||
<artifactId>lingo-client-api</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- Web -->
|
||||
@ -56,6 +56,7 @@
|
||||
</goals>
|
||||
<configuration>
|
||||
<finalName>${project.artifactId}</finalName>
|
||||
<mainClass>lingo.server.LingoServer</mainClass>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
|
Loading…
x
Reference in New Issue
Block a user