JAVA-6475: Fix formatting of POMs (#11087)

* JAVA-6475: Fix formatting of POMs

* correct build error
This commit is contained in:
freelansam
2021-08-03 00:27:15 +05:30
committed by GitHub
parent 09613d45e0
commit 69a1db0eb0
144 changed files with 495 additions and 481 deletions

View File

@@ -3,6 +3,9 @@
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>
<artifactId>k8s-admission-controller</artifactId>
<name>k8s-admission-controller</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>com.baeldung</groupId>
@@ -11,16 +14,11 @@
<relativePath>./../../parent-boot-2</relativePath>
</parent>
<artifactId>k8s-admission-controller</artifactId>
<name>k8s-admission-controller</name>
<description>Demo project for Spring Boot</description>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
@@ -31,13 +29,11 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
@@ -54,7 +50,6 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
@@ -83,4 +78,4 @@
</plugins>
</build>
</project>
</project>

View File

@@ -1,5 +1,7 @@
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>kubernetes</artifactId>
<packaging>pom</packaging>
@@ -12,6 +14,7 @@
<modules>
<module>k8s-intro</module>
<module>k8s-admission-controller</module>
</modules>
<module>k8s-admission-controller</module>
</modules>
</project>