Skip to content
Snippets Groups Projects
Commit 610a8d0e authored by Christopher Bohn's avatar Christopher Bohn :thinking:
Browse files

Restructured project to conform with CSCE361 convention.

-   Changed the project's package and made corresponding changes to
    `pom.xml` and `Chat.java`
-   Added `.gitkeep`s to `src/test` and `src/main/resources` so they're
    available to prompt students
-   closes #1
parent c559c8b4
Branches
Tags
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>edu.unl.cse</groupId> <groupId>edu.unl.cse.csce361.socket_chat</groupId>
<artifactId>SocketChat</artifactId> <artifactId>SocketChat</artifactId>
<version>1.0-SNAPSHOT</version> <version>1.0-SNAPSHOT</version>
<build> <build>
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
<archive> <archive>
<manifest> <manifest>
<addClasspath>true</addClasspath> <addClasspath>true</addClasspath>
<mainClass>edu.unl.cse.socketchat.Chat</mainClass> <mainClass>edu.unl.cse.csce361.socket_chat.Chat</mainClass>
</manifest> </manifest>
</archive> </archive>
</configuration> </configuration>
......
/* package edu.unl.cse.csce361.socket_chat;
* Copyright (c) 2019 Christopher A. Bohn, bohn@unl.edu.
*/
package edu.unl.cse.socketchat;
import java.io.*; import java.io.*;
import java.net.InetAddress; import java.net.InetAddress;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment