File tree Expand file tree Collapse file tree
maven-modules/resume-from Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xmlns =" http://maven.apache.org/POM/4.0.0"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+ <artifactId >business</artifactId >
7+ <version >1.0-SNAPSHOT</version >
8+ <name >business</name >
9+ <parent >
10+ <groupId >com.baeldung</groupId >
11+ <artifactId >resume-from</artifactId >
12+ <version >1.0-SNAPSHOT</version >
13+ </parent >
14+ <dependencies >
15+ <dependency >
16+ <groupId >com.baeldung</groupId >
17+ <artifactId >lib</artifactId >
18+ <version >1.0-SNAPSHOT</version >
19+ </dependency >
20+ </dependencies >
21+
22+ <properties >
23+ <maven .compiler.source>11</maven .compiler.source>
24+ <maven .compiler.target>11</maven .compiler.target>
25+ </properties >
26+
27+
28+ </project >
Original file line number Diff line number Diff line change 1+ public class Main {
2+
3+ public static void main (String [] args ) {
4+ System .out .println ("Hello world!" );
5+ }
6+ }
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xmlns =" http://maven.apache.org/POM/4.0.0"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+ <artifactId >lib</artifactId >
7+ <version >1.0-SNAPSHOT</version >
8+ <name >lib</name >
9+ <parent >
10+ <groupId >com.baeldung</groupId >
11+ <artifactId >resume-from</artifactId >
12+ <version >1.0-SNAPSHOT</version >
13+ </parent >
14+
15+ </project >
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xmlns =" http://maven.apache.org/POM/4.0.0"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+ <groupId >com.baeldung</groupId >
7+ <artifactId >resume-from</artifactId >
8+ <version >1.0-SNAPSHOT</version >
9+ <name >resume-from</name >
10+ <packaging >pom</packaging >
11+ <modules >
12+ <module >business</module >
13+ <module >lib</module >
14+ </modules >
15+
16+ </project >
You can’t perform that action at this time.
0 commit comments