#585 - Polishing.

Tabs in pom.xml. Renamed artifact for consistency.
This commit is contained in:
Oliver Drotbohm
2021-03-16 17:38:21 +01:00
committed by Oliver Drotbohm
parent 8406f3f980
commit 5197c10e62

View File

@@ -1,33 +1,32 @@
<?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"
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"
<modelVersion>4.0.0</modelVersion> xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent> <modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.data.examples</groupId>
<artifactId>spring-data-mongodb-examples</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</parent>
<artifactId>repository-metrics</artifactId>
<name>Spring Data MongoDB 3.1 - Repository Metrics Example</name>
<dependencies> <parent>
<dependency> <groupId>org.springframework.data.examples</groupId>
<groupId>org.springframework.boot</groupId> <artifactId>spring-data-mongodb-examples</artifactId>
<artifactId>spring-boot-starter-data-mongodb-reactive</artifactId> <version>2.0.0.BUILD-SNAPSHOT</version>
</dependency> </parent>
<dependency> <artifactId>spring-data-mongodb-repository-metrics</artifactId>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies> <name>Spring Data MongoDB 3.1 - Repository Metrics Example</name>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb-reactive</artifactId>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>spring-libs-snapshot</id>
<url>https://repo.spring.io/libs-snapshot</url>
</repository>
</repositories>
</project> </project>