File tree Expand file tree Collapse file tree 4 files changed +47
-4
lines changed
Expand file tree Collapse file tree 4 files changed +47
-4
lines changed Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" ?>
2+ <project
3+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4+ xmlns=" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" >
5+ <modelVersion >4.0.0</modelVersion >
6+ <parent >
7+ <groupId >com.iluwatar</groupId >
8+ <artifactId >java-design-patterns</artifactId >
9+ <version >1.7.0</version >
10+ </parent >
11+ <artifactId >hexagonal</artifactId >
12+ <dependencies >
13+ <dependency >
14+ <groupId >junit</groupId >
15+ <artifactId >junit</artifactId >
16+ <scope >test</scope >
17+ </dependency >
18+ </dependencies >
19+ </project >
Original file line number Diff line number Diff line change 1+ package com .iluwatar ;
2+
3+ public class App {
4+ public static void main (String [] args ) {
5+ System .out .println ("Hello World!" );
6+ }
7+ }
Original file line number Diff line number Diff line change 1+ package com .iluwatar ;
2+
3+ import org .junit .Test ;
4+
5+ /**
6+ *
7+ * Application test
8+ *
9+ */
10+ public class AppTest {
11+
12+ @ Test
13+ public void test () {
14+ String [] args = {};
15+ App .main (args );
16+ }
17+ }
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" ?>
2- <project xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xmlns =" http://maven.apache.org/POM/4.0.0"
3- xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
43 <modelVersion >4.0.0</modelVersion >
54
65 <groupId >com.iluwatar</groupId >
8079 <module >message-channel</module >
8180 <module >fluentinterface</module >
8281 <module >reactor</module >
83- </modules >
82+ <module >hexagonal</module >
83+ </modules >
8484
8585 <dependencyManagement >
8686 <dependencies >
235235 </plugins >
236236 </build >
237237
238- </project >
238+ </project >
You can’t perform that action at this time.
0 commit comments