| 
									
										
										
										
											2020-04-20 19:01:55 +03:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							|  |  |  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							| 
									
										
										
										
											2021-05-13 22:46:18 +05:30
										 |  |  |     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"> | 
					
						
							|  |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  |     <groupId>com.baeldung.app</groupId> | 
					
						
							|  |  |  |     <artifactId>spring-boot-groovy</artifactId> | 
					
						
							|  |  |  |     <name>spring-boot-groovy</name> | 
					
						
							|  |  |  |     <packaging>war</packaging> | 
					
						
							|  |  |  |     <description>Spring Boot Todo Application with Groovy</description> | 
					
						
							| 
									
										
										
										
											2020-04-20 19:01:55 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-13 22:46:18 +05:30
										 |  |  |     <parent> | 
					
						
							| 
									
										
										
										
											2020-04-20 19:01:55 +03:00
										 |  |  |         <groupId>com.baeldung</groupId> | 
					
						
							|  |  |  |         <artifactId>parent-boot-2</artifactId> | 
					
						
							|  |  |  |         <version>0.0.1-SNAPSHOT</version> | 
					
						
							| 
									
										
										
										
											2020-09-07 21:15:50 +05:30
										 |  |  |         <relativePath>../../parent-boot-2</relativePath> | 
					
						
							| 
									
										
										
										
											2021-05-13 22:46:18 +05:30
										 |  |  |     </parent> | 
					
						
							| 
									
										
										
										
											2020-04-20 19:01:55 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <dependencies> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter-data-jpa</artifactId> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter-web</artifactId> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.codehaus.groovy</groupId> | 
					
						
							|  |  |  |             <artifactId>groovy</artifactId> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |             <artifactId>spring-boot-starter-test</artifactId> | 
					
						
							|  |  |  |             <scope>test</scope> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							|  |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>com.h2database</groupId> | 
					
						
							|  |  |  |             <artifactId>h2</artifactId> | 
					
						
							|  |  |  |             <scope>runtime</scope> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2021-05-13 22:46:18 +05:30
										 |  |  |     </dependencies> | 
					
						
							| 
									
										
										
										
											2020-04-20 19:01:55 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <build> | 
					
						
							|  |  |  |         <plugins> | 
					
						
							|  |  |  |             <plugin> | 
					
						
							|  |  |  |                 <groupId>org.springframework.boot</groupId> | 
					
						
							|  |  |  |                 <artifactId>spring-boot-maven-plugin</artifactId> | 
					
						
							|  |  |  |             </plugin> | 
					
						
							|  |  |  |             <plugin> | 
					
						
							|  |  |  |                 <groupId>org.codehaus.gmavenplus</groupId> | 
					
						
							|  |  |  |                 <artifactId>gmavenplus-plugin</artifactId> | 
					
						
							|  |  |  |                 <version>1.9.0</version> | 
					
						
							|  |  |  |                 <executions> | 
					
						
							| 
									
										
										
										
											2021-05-13 22:46:18 +05:30
										 |  |  |                     <execution> | 
					
						
							| 
									
										
										
										
											2020-04-20 19:01:55 +03:00
										 |  |  |                         <goals> | 
					
						
							|  |  |  |                             <goal>addSources</goal> | 
					
						
							|  |  |  |                             <goal>addTestSources</goal> | 
					
						
							|  |  |  |                             <goal>generateStubs</goal> | 
					
						
							|  |  |  |                             <goal>compile</goal> | 
					
						
							|  |  |  |                             <goal>generateTestStubs</goal> | 
					
						
							|  |  |  |                             <goal>compileTests</goal> | 
					
						
							|  |  |  |                             <goal>removeStubs</goal> | 
					
						
							|  |  |  |                             <goal>removeTestStubs</goal> | 
					
						
							|  |  |  |                         </goals> | 
					
						
							| 
									
										
										
										
											2021-05-13 22:46:18 +05:30
										 |  |  |                     </execution> | 
					
						
							| 
									
										
										
										
											2020-04-20 19:01:55 +03:00
										 |  |  |                 </executions> | 
					
						
							|  |  |  |             </plugin> | 
					
						
							|  |  |  |         </plugins> | 
					
						
							|  |  |  |     </build> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <properties> | 
					
						
							| 
									
										
										
										
											2020-09-07 21:15:50 +05:30
										 |  |  |         <start-class>com.baeldung.springwithgroovy.SpringBootGroovyApplication</start-class> | 
					
						
							| 
									
										
										
										
											2020-04-20 19:01:55 +03:00
										 |  |  |     </properties> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-13 22:46:18 +05:30
										 |  |  | </project> |