mirror of
https://github.com/GameRevision/GWLP-R
synced 2026-08-19 00:23:03 -04:00
Bumps [mysql-connector-java](https://github.com/mysql/mysql-connector-j) from 5.1.25 to 8.0.28. - [Release notes](https://github.com/mysql/mysql-connector-j/releases) - [Changelog](https://github.com/mysql/mysql-connector-j/blob/release/8.0/CHANGES) - [Commits](https://github.com/mysql/mysql-connector-j/compare/5.1.25...8.0.28) --- updated-dependencies: - dependency-name: mysql:mysql-connector-java dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
58 lines
1.9 KiB
XML
58 lines
1.9 KiB
XML
<?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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>database</artifactId>
|
|
|
|
|
|
<parent>
|
|
<groupId>com.gamerevision.gwlpr</groupId>
|
|
<artifactId>gwlpr</artifactId>
|
|
<version>0.3.3</version>
|
|
</parent>
|
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
<description>The database framework for the GWLPR databases.</description>
|
|
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>java.net</id>
|
|
<url>http://download.java.net/maven/2/</url>
|
|
</repository>
|
|
<repository>
|
|
<url>http://download.eclipse.org/rt/eclipselink/maven.repo/</url>
|
|
<id>eclipselink</id>
|
|
<layout>default</layout>
|
|
<name>Repository for library EclipseLink (JPA 2.1)</name>
|
|
</repository>
|
|
</repositories>
|
|
|
|
|
|
<dependencies>
|
|
<!-- The Database connection framework -->
|
|
<dependency>
|
|
<groupId>org.eclipse.persistence</groupId>
|
|
<artifactId>eclipselink</artifactId>
|
|
<version>2.5.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.persistence</groupId>
|
|
<artifactId>javax.persistence</artifactId>
|
|
<version>2.1.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.persistence</groupId>
|
|
<artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>
|
|
<version>2.5.0-SNAPSHOT</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>8.0.28</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|