remove tabs and extra spaces from pom.xml

This commit is contained in:
azhwani 2020-06-02 13:28:02 +01:00
parent 954d6b5be9
commit 684e5a4a6c

View File

@ -1,69 +1,70 @@
<?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 http://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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<artifactId>spring-persistence-simple-2</artifactId> <modelVersion>4.0.0</modelVersion>
<version>0.1-SNAPSHOT</version> <artifactId>spring-persistence-simple-2</artifactId>
<name>spring-persistence-simple-2</name> <version>0.1-SNAPSHOT</version>
<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>
<!-- persistence -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
<scope>test</scope>
</dependency>
<!-- simple-jndi -->
<dependency>
<groupId>com.github.h-thurow</groupId>
<artifactId>simple-jndi</artifactId>
<version>${simple-jndi.version}</version>
</dependency> </dependency>
<!-- test scoped --> <!-- persistence -->
<dependency> <dependency>
<groupId>org.springframework</groupId> <groupId>com.h2database</groupId>
<artifactId>spring-test</artifactId> <artifactId>h2</artifactId>
<version>${org.springframework.version}</version> <version>${h2.version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties> <!-- simple-jndi -->
<!-- Spring --> <dependency>
<org.springframework.version>5.2.4.RELEASE</org.springframework.version> <groupId>com.github.h-thurow</groupId>
<!-- persistence --> <artifactId>simple-jndi</artifactId>
<h2.version>1.4.200</h2.version> <version>${simple-jndi.version}</version>
<!-- simple-jndi --> </dependency>
<!-- test scoped -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${org.springframework.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<!-- Spring -->
<org.springframework.version>5.2.4.RELEASE</org.springframework.version>
<!-- persistence -->
<h2.version>1.4.200</h2.version>
<!-- 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>