Switched to using HikariCP for connection pool
All checks were successful
Locusworks Team/eight-track/pipeline/head This commit looks good
All checks were successful
Locusworks Team/eight-track/pipeline/head This commit looks good
This commit is contained in:
34
pom.xml
34
pom.xml
@ -14,16 +14,16 @@
|
||||
</organization>
|
||||
|
||||
<scm>
|
||||
<url>git@gitea.locusworks.net:Locusworks/eight-track.git</url>
|
||||
<url>ssh://gitea@gitea.locusworks.net:7999/locusworks/eight-track.git</url>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
<flyway.version>6.1.3</flyway.version>
|
||||
<mariadb.version>2.5.2</mariadb.version>
|
||||
<hibernate.version>5.4.10.Final</hibernate.version>
|
||||
<spring.version>5.2.2.RELEASE</spring.version>
|
||||
<spring.boot.version>2.2.2.RELEASE</spring.boot.version>
|
||||
<spring.data.version>2.2.2.RELEASE</spring.data.version>
|
||||
<flyway.version>6.4.2</flyway.version>
|
||||
<mysql.version>8.0.20</mysql.version>
|
||||
<hibernate.version>5.4.16.Final</hibernate.version>
|
||||
<spring.version>5.2.6.RELEASE</spring.version>
|
||||
<spring.boot.version>2.3.0.RELEASE</spring.boot.version>
|
||||
<spring.data.version>2.3.0.RELEASE</spring.data.version>
|
||||
<jackson.version>2.10.1</jackson.version>
|
||||
<log4j.version>2.12.1</log4j.version>
|
||||
<slf4j.version>1.7.28</slf4j.version>
|
||||
@ -116,7 +116,7 @@
|
||||
<artifactId>flyway-maven-plugin</artifactId>
|
||||
<version>${flyway.version}</version>
|
||||
<configuration>
|
||||
<url>jdbc:mariadb://localhost:3306/</url>
|
||||
<url>jdbc:mysql://localhost:3306/</url>
|
||||
<outOfOrder>false</outOfOrder>
|
||||
<schemas>
|
||||
<schema>eighttrack</schema>
|
||||
@ -128,9 +128,9 @@
|
||||
</configuration>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.mariadb.jdbc</groupId>
|
||||
<artifactId>mariadb-java-client</artifactId>
|
||||
<version>${mariadb.version}</version>
|
||||
<groupId>mysql</groupId>
|
||||
<artifactId>mysql-connector-java</artifactId>
|
||||
<version>${mysql.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
@ -184,17 +184,11 @@
|
||||
<version>${flyway.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.mariadb.jdbc</groupId>
|
||||
<artifactId>mariadb-java-client</artifactId>
|
||||
<version>${mariadb.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
|
||||
<dependency>
|
||||
<groupId>mysql</groupId>
|
||||
<artifactId>mysql-connector-java</artifactId>
|
||||
<version>8.0.18</version>
|
||||
<version>${mysql.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
@ -202,11 +196,11 @@
|
||||
<artifactId>hibernate-entitymanager</artifactId>
|
||||
<version>${hibernate.version}</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- https://mvnrepository.com/artifact/org.hibernate/hibernate-c3p0 -->
|
||||
<dependency>
|
||||
<groupId>org.hibernate</groupId>
|
||||
<artifactId>hibernate-c3p0</artifactId>
|
||||
<artifactId>hibernate-hikaricp</artifactId>
|
||||
<version>${hibernate.version}</version>
|
||||
</dependency>
|
||||
|
||||
|
Reference in New Issue
Block a user