JAVA-5223: Fix formatting of POMs (Spring Boot Modules - Part 2)

This commit is contained in:
sampadawagde
2021-05-13 22:46:18 +05:30
parent e48ab0310e
commit 3a9cc37beb
30 changed files with 220 additions and 302 deletions

View File

@@ -1,21 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
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>
<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>
<parent>
<parent>
<groupId>com.baeldung</groupId>
<artifactId>parent-boot-2</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath>../../parent-boot-2</relativePath>
</parent>
</parent>
<dependencies>
<dependency>
@@ -30,7 +29,6 @@
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
@@ -41,7 +39,7 @@
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
</dependencies>
<build>
<plugins>
@@ -54,7 +52,7 @@
<artifactId>gmavenplus-plugin</artifactId>
<version>1.9.0</version>
<executions>
<execution>
<execution>
<goals>
<goal>addSources</goal>
<goal>addTestSources</goal>
@@ -65,7 +63,7 @@
<goal>removeStubs</goal>
<goal>removeTestStubs</goal>
</goals>
</execution>
</execution>
</executions>
</plugin>
</plugins>
@@ -75,4 +73,4 @@
<start-class>com.baeldung.springwithgroovy.SpringBootGroovyApplication</start-class>
</properties>
</project>
</project>