File tree Expand file tree Collapse file tree 4 files changed +41
-0
lines changed
main/java/com/iluwatar/layers
test/java/com/iluwatar/layers Expand file tree Collapse file tree 4 files changed +41
-0
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.5.0</version >
10+ </parent >
11+ <groupId >com.iluwatar.layers</groupId >
12+ <artifactId >layers</artifactId >
13+ <dependencies >
14+ <dependency >
15+ <groupId >junit</groupId >
16+ <artifactId >junit</artifactId >
17+ <scope >test</scope >
18+ </dependency >
19+ </dependencies >
20+ </project >
Original file line number Diff line number Diff line change 1+ package com .iluwatar .layers ;
2+
3+ public class App {
4+
5+ public static void main (String [] args ) {
6+ System .out .println ("Hello World!" );
7+ }
8+ }
Original file line number Diff line number Diff line change 1+ package com .iluwatar .layers ;
2+
3+ import org .junit .Test ;
4+
5+ public class AppTest {
6+
7+ @ Test
8+ public void test () {
9+ String [] args = {};
10+ App .main (args );
11+ }
12+ }
Original file line number Diff line number Diff line change 7373 <module >async-method-invocation</module >
7474 <module >business-delegate</module >
7575 <module >half-sync-half-async</module >
76+ <module >layers</module >
7677 </modules >
7778
7879 <dependencyManagement >
You can’t perform that action at this time.
0 commit comments