Remove websocket from project names, fix main class

This commit is contained in:
Charles Gould 2019-02-11 20:46:16 -05:00
parent 710922622c
commit f6f028d680
6 changed files with 19 additions and 18 deletions

View File

@ -1 +1 @@
web: java -jar server/target/lingo-websocket-server.jar
web: java -jar server/target/lingo-server.jar

View File

@ -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>

View File

@ -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 -->

View File

@ -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>

View File

@ -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>

View File

@ -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>