Fixed bug concerning modularity
This commit is contained in:
		@@ -3,6 +3,7 @@
 | 
				
			|||||||
	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
 | 
						<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
 | 
				
			||||||
		<attributes>
 | 
							<attributes>
 | 
				
			||||||
			<attribute name="maven.pomderived" value="true"/>
 | 
								<attribute name="maven.pomderived" value="true"/>
 | 
				
			||||||
 | 
								<attribute name="module" value="true"/>
 | 
				
			||||||
		</attributes>
 | 
							</attributes>
 | 
				
			||||||
	</classpathentry>
 | 
						</classpathentry>
 | 
				
			||||||
	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
 | 
						<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -50,6 +50,7 @@ public class Startup {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
		System.out.println("Press the return key to stop the server...");
 | 
							System.out.println("Press the return key to stop the server...");
 | 
				
			||||||
		System.in.read();
 | 
							System.in.read();
 | 
				
			||||||
 | 
							System.out.println("Stopped");
 | 
				
			||||||
		System.exit(0);
 | 
							System.exit(0);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -9,7 +9,12 @@
 | 
				
			|||||||
 */
 | 
					 */
 | 
				
			||||||
module envoy.server {
 | 
					module envoy.server {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						opens envoy.server.data;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	requires transitive envoy.common;
 | 
						requires transitive envoy.common;
 | 
				
			||||||
	requires transitive java.nio.server;
 | 
						requires transitive java.nio.server;
 | 
				
			||||||
	requires transitive java.persistence;
 | 
						requires transitive java.persistence;
 | 
				
			||||||
 | 
						requires transitive java.sql;
 | 
				
			||||||
 | 
						requires transitive org.hibernate.orm.core;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user