Added space indents

This commit is contained in:
anuradha 2021-10-05 09:30:15 +05:30
parent 79963c7cf0
commit e55d62da6e

View File

@ -1,63 +1,62 @@
<?xml version="1.0" encoding="UTF-8"?> <?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" <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">
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>
<modelVersion>4.0.0</modelVersion> <parent>
<parent> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.5.4</version>
<relativePath />
<!-- lookup parent from repository -->
</parent>
<groupId>com.baeldung</groupId>
<artifactId>maven-generate-war</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>maven-generate-war</name>
<description>Spring boot project to demonstrate war file generation</description>
<properties>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId> <artifactId>spring-boot-starter-thymeleaf</artifactId>
<version>2.5.4</version> </dependency>
<relativePath/> <!-- lookup parent from repository --> <dependency>
</parent> <groupId>org.springframework.boot</groupId>
<groupId>com.baeldung</groupId> <artifactId>spring-boot-starter-web</artifactId>
<artifactId>maven-generate-war</artifactId> </dependency>
<version>0.0.1-SNAPSHOT</version> <dependency>
<packaging>war</packaging> <groupId>org.springframework.boot</groupId>
<name>maven-generate-war</name> <artifactId>spring-boot-starter-tomcat</artifactId>
<description>Spring boot project to demonstrate war file generation</description> <scope>provided</scope>
<properties> </dependency>
<java.version>11</java.version> <dependency>
</properties> <groupId>org.springframework.boot</groupId>
<dependencies> <artifactId>spring-boot-starter-test</artifactId>
<dependency> <scope>test</scope>
<groupId>org.springframework.boot</groupId> </dependency>
<artifactId>spring-boot-starter-thymeleaf</artifactId> </dependencies>
</dependency> <build>
<dependency> <finalName>maven-generate-war</finalName>
<groupId>org.springframework.boot</groupId> <plugins>
<artifactId>spring-boot-starter-web</artifactId> <plugin>
</dependency> <artifactId>maven-war-plugin</artifactId>
<dependency> <version>3.3.1</version>
<groupId>org.springframework.boot</groupId> <configuration>
<artifactId>spring-boot-starter-tomcat</artifactId> <webResources>
<scope>provided</scope> <resource>
</dependency> <directory>additional_resources</directory>
<dependency> </resource>
<groupId>org.springframework.boot</groupId> </webResources>
<artifactId>spring-boot-starter-test</artifactId> <archive>
<scope>test</scope> <manifest>
</dependency> <addClasspath>true</addClasspath>
</dependencies> </manifest>
</archive>
<build> </configuration>
<finalName>maven-generate-war</finalName> </plugin>
<plugins> </plugins>
<plugin> </build>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<webResources>
<resource>
<directory>additional_resources</directory>
</resource>
</webResources>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project> </project>