| 
									
										
										
										
											2020-07-11 20:34:36 -06:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							| 
									
										
										
										
											2020-09-22 01:08:21 +02:00
										 |  |  | <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | 
					
						
							| 
									
										
										
										
											2020-07-11 20:34:36 -06:00
										 |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							| 
									
										
										
										
											2022-05-08 16:36:25 +05:30
										 |  |  |     <artifactId>docker-spring-boot</artifactId> | 
					
						
							|  |  |  |     <name>docker-spring-boot</name> | 
					
						
							|  |  |  |     <description>Demo project showing Spring Boot and Docker</description> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-15 09:59:54 +05:30
										 |  |  |     <parent> | 
					
						
							| 
									
										
										
										
											2022-06-30 16:57:04 +03:00
										 |  |  |         <groupId>com.baeldung</groupId> | 
					
						
							|  |  |  |         <artifactId>parent-boot-2</artifactId> | 
					
						
							|  |  |  |         <version>0.0.1-SNAPSHOT</version> | 
					
						
							|  |  |  |         <relativePath>../../parent-boot-2</relativePath> | 
					
						
							| 
									
										
										
										
											2020-07-11 20:34:36 -06:00
										 |  |  |     </parent> | 
					
						
							| 
									
										
										
										
											2020-09-22 01:08:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-11 20:34:36 -06:00
										 |  |  |     <dependencies> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter-web</artifactId> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2020-09-22 01:08:21 +02:00
										 |  |  |         <dependency> | 
					
						
							| 
									
										
										
										
											2020-07-11 20:34:36 -06:00
										 |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter-test</artifactId> | 
					
						
							|  |  |  |             <scope>test</scope> | 
					
						
							|  |  |  |             <exclusions> | 
					
						
							|  |  |  |                 <exclusion> | 
					
						
							|  |  |  |                     <groupId>org.junit.vintage</groupId> | 
					
						
							|  |  |  |                     <artifactId>junit-vintage-engine</artifactId> | 
					
						
							|  |  |  |                 </exclusion> | 
					
						
							|  |  |  |             </exclusions> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |     </dependencies> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <build> | 
					
						
							|  |  |  |         <plugins> | 
					
						
							|  |  |  |             <plugin> | 
					
						
							|  |  |  |                 <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |                 <artifactId>spring-boot-maven-plugin</artifactId> | 
					
						
							|  |  |  |                 <configuration> | 
					
						
							|  |  |  |                     <layers> | 
					
						
							|  |  |  |                         <enabled>true</enabled> | 
					
						
							| 
									
										
										
										
											2020-09-14 23:58:12 +02:00
										 |  |  |                         <configuration>${project.basedir}/src/layers.xml</configuration> | 
					
						
							| 
									
										
										
										
											2020-07-11 20:34:36 -06:00
										 |  |  |                     </layers> | 
					
						
							|  |  |  |                 </configuration> | 
					
						
							| 
									
										
										
										
											2022-05-23 22:01:34 +02:00
										 |  |  |                 <executions> | 
					
						
							|  |  |  |                     <execution> | 
					
						
							|  |  |  |                         <goals> | 
					
						
							|  |  |  |                             <goal>repackage</goal> | 
					
						
							|  |  |  |                         </goals> | 
					
						
							|  |  |  |                     </execution> | 
					
						
							|  |  |  |                 </executions> | 
					
						
							| 
									
										
										
										
											2020-07-11 20:34:36 -06:00
										 |  |  |             </plugin> | 
					
						
							|  |  |  |         </plugins> | 
					
						
							|  |  |  |     </build> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-08 16:36:25 +05:30
										 |  |  | </project> |