#84 Skeleton for Layers architectural pattern
This commit is contained in:
		
							
								
								
									
										20
									
								
								layers/pom.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								layers/pom.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,20 @@ | |||||||
|  | <?xml version="1.0"?> | ||||||
|  | <project | ||||||
|  | 	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | ||||||
|  | 	xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||||||
|  | 	<modelVersion>4.0.0</modelVersion> | ||||||
|  | 	<parent> | ||||||
|  | 		<groupId>com.iluwatar</groupId> | ||||||
|  | 		<artifactId>java-design-patterns</artifactId> | ||||||
|  | 		<version>1.5.0</version> | ||||||
|  | 	</parent> | ||||||
|  | 	<groupId>com.iluwatar.layers</groupId> | ||||||
|  | 	<artifactId>layers</artifactId> | ||||||
|  | 	<dependencies> | ||||||
|  | 		<dependency> | ||||||
|  | 			<groupId>junit</groupId> | ||||||
|  | 			<artifactId>junit</artifactId> | ||||||
|  | 			<scope>test</scope> | ||||||
|  | 		</dependency> | ||||||
|  | 	</dependencies> | ||||||
|  | </project> | ||||||
							
								
								
									
										8
									
								
								layers/src/main/java/com/iluwatar/layers/App.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								layers/src/main/java/com/iluwatar/layers/App.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,8 @@ | |||||||
|  | package com.iluwatar.layers; | ||||||
|  |  | ||||||
|  | public class App { | ||||||
|  | 	 | ||||||
|  | 	public static void main(String[] args) { | ||||||
|  | 		System.out.println("Hello World!"); | ||||||
|  | 	} | ||||||
|  | } | ||||||
							
								
								
									
										12
									
								
								layers/src/test/java/com/iluwatar/layers/AppTest.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								layers/src/test/java/com/iluwatar/layers/AppTest.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,12 @@ | |||||||
|  | package com.iluwatar.layers; | ||||||
|  |  | ||||||
|  | import org.junit.Test; | ||||||
|  |  | ||||||
|  | public class AppTest { | ||||||
|  |  | ||||||
|  | 	@Test | ||||||
|  | 	public void test() { | ||||||
|  | 		String[] args = {}; | ||||||
|  | 		App.main(args); | ||||||
|  | 	} | ||||||
|  | } | ||||||
							
								
								
									
										1
									
								
								pom.xml
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								pom.xml
									
									
									
									
									
								
							| @@ -73,6 +73,7 @@ | |||||||
| 		<module>async-method-invocation</module> | 		<module>async-method-invocation</module> | ||||||
|     	<module>business-delegate</module> |     	<module>business-delegate</module> | ||||||
|     	<module>half-sync-half-async</module> |     	<module>half-sync-half-async</module> | ||||||
|  |     <module>layers</module> | ||||||
|   </modules> |   </modules> | ||||||
|  |  | ||||||
| 	<dependencyManagement> | 	<dependencyManagement> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user