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> <parent>
<groupId>com.charego</groupId> <groupId>com.charego</groupId>
<artifactId>lingo-websocket</artifactId> <artifactId>lingo-parent</artifactId>
<version>1.0</version> <version>1.0</version>
</parent> </parent>
<artifactId>lingo-websocket-client-api</artifactId> <artifactId>lingo-client-api</artifactId>
<name>Lingo WebSocket :: Client API</name> <name>Lingo :: Client API</name>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${project.groupId}</groupId> <groupId>${project.groupId}</groupId>
<version>${project.version}</version> <version>${project.version}</version>
<artifactId>lingo-websocket-common</artifactId> <artifactId>lingo-common</artifactId>
</dependency> </dependency>
</dependencies> </dependencies>

View File

@ -4,12 +4,12 @@
<parent> <parent>
<groupId>com.charego</groupId> <groupId>com.charego</groupId>
<artifactId>lingo-websocket</artifactId> <artifactId>lingo-parent</artifactId>
<version>1.0</version> <version>1.0</version>
</parent> </parent>
<artifactId>lingo-websocket-client</artifactId> <artifactId>lingo-client</artifactId>
<name>Lingo WebSocket :: Client</name> <name>Lingo :: Client</name>
<properties> <properties>
<javafx.version>11.0.2</javafx.version> <javafx.version>11.0.2</javafx.version>
@ -19,7 +19,7 @@
<dependency> <dependency>
<groupId>${project.groupId}</groupId> <groupId>${project.groupId}</groupId>
<version>${project.version}</version> <version>${project.version}</version>
<artifactId>lingo-websocket-client-api</artifactId> <artifactId>lingo-client-api</artifactId>
</dependency> </dependency>
<!-- Web --> <!-- Web -->

View File

@ -4,12 +4,12 @@
<parent> <parent>
<groupId>com.charego</groupId> <groupId>com.charego</groupId>
<artifactId>lingo-websocket</artifactId> <artifactId>lingo-parent</artifactId>
<version>1.0</version> <version>1.0</version>
</parent> </parent>
<artifactId>lingo-websocket-common</artifactId> <artifactId>lingo-common</artifactId>
<name>Lingo WebSocket :: Common</name> <name>Lingo :: Common</name>
<dependencies> <dependencies>
<dependency> <dependency>

View File

@ -9,11 +9,11 @@
</parent> </parent>
<groupId>com.charego</groupId> <groupId>com.charego</groupId>
<artifactId>lingo-websocket</artifactId> <artifactId>lingo-parent</artifactId>
<version>1.0</version> <version>1.0</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>Lingo WebSocket</name> <name>Lingo</name>
<properties> <properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

View File

@ -4,18 +4,18 @@
<parent> <parent>
<groupId>com.charego</groupId> <groupId>com.charego</groupId>
<artifactId>lingo-websocket</artifactId> <artifactId>lingo-parent</artifactId>
<version>1.0</version> <version>1.0</version>
</parent> </parent>
<artifactId>lingo-websocket-server</artifactId> <artifactId>lingo-server</artifactId>
<name>Lingo WebSocket :: Server</name> <name>Lingo :: Server</name>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>${project.groupId}</groupId> <groupId>${project.groupId}</groupId>
<version>${project.version}</version> <version>${project.version}</version>
<artifactId>lingo-websocket-client-api</artifactId> <artifactId>lingo-client-api</artifactId>
</dependency> </dependency>
<!-- Web --> <!-- Web -->
@ -56,6 +56,7 @@
</goals> </goals>
<configuration> <configuration>
<finalName>${project.artifactId}</finalName> <finalName>${project.artifactId}</finalName>
<mainClass>lingo.server.LingoServer</mainClass>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>