File tree Expand file tree Collapse file tree 4 files changed +43
-4
lines changed Expand file tree Collapse file tree 4 files changed +43
-4
lines changed 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 >
6867 <module >dependency-injection</module >
6968 <module >naked-objects</module >
7069 <module >front-controller</module >
71- </modules >
70+ <module >repository</module >
71+ </modules >
7272
7373 <dependencyManagement >
7474 <dependencies >
119119 </goals >
120120 </pluginExecutionFilter >
121121 <action >
122- <ignore />
122+ <ignore />
123123 </action >
124124 </pluginExecution >
125125 </pluginExecutions >
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.3.0</version >
10+ </parent >
11+ <artifactId >repository</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+ }
You can’t perform that action at this time.
0 commit comments