JAVA-5223: Fix formatting of POMs (Persistence Modules - Part 1)

This commit is contained in:
sampadawagde
2021-05-10 20:05:39 +05:30
parent 1490c06a38
commit fa112ee5f8
30 changed files with 138 additions and 177 deletions
@@ -1,6 +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>
<groupId>com.baeldung.core-java-persistence-2</groupId>
<artifactId>core-java-persistence-2</artifactId>
@@ -31,24 +32,15 @@
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.driver.version}</version>
</dependency>
<!--
==================================================================
This jar is not in maven central repo due to some license issues.
We need to manually download and install to maven repository.
==================================================================
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>${oracle.driver.version}</version>
</dependency>
-->
<!-- ================================================================== This jar is not in maven
central repo due to some license issues. We need to manually download and install to maven repository.
================================================================== <dependency> <groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId> <version>${oracle.driver.version}</version> </dependency> -->
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>${mssql.driver.version}</version>
</dependency>
</dependencies>
<properties>
@@ -59,4 +51,4 @@
<mysql.driver.version>8.0.22</mysql.driver.version>
</properties>
</project>
</project>