remove tabs and extra spaces from pom.xml

This commit is contained in:
azhwani 2020-06-02 13:48:46 +01:00
parent fd94f30e26
commit b508ff2904
1 changed files with 55 additions and 56 deletions

View File

@ -1,70 +1,69 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">
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>
<modelVersion>4.0.0</modelVersion> <artifactId>spring-persistence-simple-2</artifactId>
<artifactId>spring-persistence-simple-2</artifactId> <version>0.1-SNAPSHOT</version>
<version>0.1-SNAPSHOT</version> <name>spring-persistence-simple-2</name>
<name>spring-persistence-simple-2</name>
<parent> <parent>
<groupId>com.baeldung</groupId> <groupId>com.baeldung</groupId>
<artifactId>persistence-modules</artifactId> <artifactId>persistence-modules</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0-SNAPSHOT</version>
</parent> </parent>
<dependencies> <dependencies>
<!-- Spring --> <!-- Spring -->
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId> <artifactId>spring-orm</artifactId>
<version>${org.springframework.version}</version> <version>${org.springframework.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId> <artifactId>spring-context</artifactId>
<version>${org.springframework.version}</version> <version>${org.springframework.version}</version>
</dependency> </dependency>
<!-- persistence --> <!-- persistence -->
<dependency> <dependency>
<groupId>com.h2database</groupId> <groupId>com.h2database</groupId>
<artifactId>h2</artifactId> <artifactId>h2</artifactId>
<version>${h2.version}</version> <version>${h2.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<!-- simple-jndi --> <!-- simple-jndi -->
<dependency> <dependency>
<groupId>com.github.h-thurow</groupId> <groupId>com.github.h-thurow</groupId>
<artifactId>simple-jndi</artifactId> <artifactId>simple-jndi</artifactId>
<version>${simple-jndi.version}</version> <version>${simple-jndi.version}</version>
</dependency> </dependency>
<!-- test scoped --> <!-- test scoped -->
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId> <artifactId>spring-test</artifactId>
<version>${org.springframework.version}</version> <version>${org.springframework.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mockito</groupId> <groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId> <artifactId>mockito-core</artifactId>
<version>${mockito.version}</version> <version>${mockito.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<properties> <properties>
<!-- Spring --> <!-- Spring -->
<org.springframework.version>5.2.4.RELEASE</org.springframework.version> <org.springframework.version>5.2.4.RELEASE</org.springframework.version>
<!-- persistence --> <!-- persistence -->
<h2.version>1.4.200</h2.version> <h2.version>1.4.200</h2.version>
<!-- simple-jndi --> <!-- simple-jndi -->
<simple-jndi.version>0.23.0</simple-jndi.version> <simple-jndi.version>0.23.0</simple-jndi.version>
<!-- test scoped --> <!-- test scoped -->
<mockito.version>3.3.3</mockito.version> <mockito.version>3.3.3</mockito.version>
</properties> </properties>
</project> </project>