Multimodule Maven Project using Java Modules (#6875)

* Initial Commit

* Update pom.xml

* Update pom.xml

* Update pom.xml

* Update pom.xml

* Update pom.xml

* Update pom.xml

* Update pom.xml

* Update pom.xml

* Update pom.xml

* Update pom.xml

* Update pom.xml

* Update pom.xml

* Update pom.xml

* Update pom.xml

* Update pom.xml

* Update module-info.java

* Update module-info.java

* Update pom.xml

* Update pom.xml
This commit is contained in:
Alejandro Gervasio
2019-05-03 00:45:12 -03:00
committed by KevinGilmore
parent 0e446c9df0
commit 4cc3f3413c
14 changed files with 307 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
package com.baeldung.entitymodule;
public class User {
private final String name;
public User(String name) {
this.name = name;
}
public String getName() {
return name;
}
@Override
public String toString() {
return "User{" + "name=" + name + '}';
}
}

View File

@@ -0,0 +1,3 @@
module com.baeldung.entitymodule {
exports com.baeldung.entitymodule;
}