File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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.4.0</version >
10+ </parent >
11+ <artifactId >business-delegate</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+
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 ;
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 11<?xml version =" 1.0" encoding =" UTF-8" ?>
2- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
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 >
7170 <module >naked-objects</module >
7271 <module >front-controller</module >
7372 <module >repository</module >
74- </modules >
73+ <module >business-delegate</module >
74+ </modules >
7575
7676 <dependencyManagement >
7777 <dependencies >
137137 </goals >
138138 </pluginExecutionFilter >
139139 <action >
140- <ignore />
140+ <ignore />
141141 </action >
142142 </pluginExecution >
143143 </pluginExecutions >
You can’t perform that action at this time.
0 commit comments