Fixed bug concerning modularity

This commit is contained in:
delvh 2020-03-14 15:08:58 +01:00
parent a89f0939e8
commit 129587b312
3 changed files with 8 additions and 1 deletions

View File

@ -3,6 +3,7 @@
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">

View File

@ -50,6 +50,7 @@ public class Startup {
System.out.println("Press the return key to stop the server...");
System.in.read();
System.out.println("Stopped");
System.exit(0);
}

View File

@ -1,7 +1,7 @@
/**
* This module contains all classes defining the server application of the Envoy
* project.
*
*
* @author Kai S. K. Engelbart
* @author Leon Hofmeister
* @author Maximilian K&auml;fer
@ -9,7 +9,12 @@
*/
module envoy.server {
opens envoy.server.data;
requires transitive envoy.common;
requires transitive java.nio.server;
requires transitive java.persistence;
requires transitive java.sql;
requires transitive org.hibernate.orm.core;
}