mysql-socket-factory-connector-j-6
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.google.cloud.sql</groupId> <artifactId>mysql-socket-factory-connector-j-6</artifactId> <version>1.2.1</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.google.cloud.sql</groupId> <artifactId>jdbc-socket-factory-parent</artifactId> <version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} --> </parent> <artifactId>mysql-socket-factory-connector-j-6</artifactId> <packaging>jar</packaging> <distributionManagement> <relocation> <groupId>com.google.cloud.sql</groupId> <artifactId>mysql-socket-factory-connector-j-8</artifactId> <version>1.2.0</version> <message>MySQL Connector/J 6.0.x is no longer under development. Please update to 8.0.x instead.</message> </relocation> </distributionManagement> <name>Cloud SQL MySQL Socket Factory (for Connector/J 6.x)</name> <description> Socket factory for the MySQL JDBC driver (version 6.x) that allows a user with the appropriate permissions to connect to a Cloud SQL database without having to deal with IP whitelisting or SSL certificates manually. </description> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>6.0.6</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.cloud.sql</groupId> <artifactId>jdbc-socket-factory-core</artifactId> <version>1.2.1</version> <!-- {x-version-update:cloud-sql-java-connector:current} --> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.truth</groupId> <artifactId>truth</artifactId> <version>1.1.2</version> <scope>test</scope> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>4.0.2</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>jar-with-driver-and-dependencies</id> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>6.0.6</version> </dependency> </dependencies> </profile> </profiles> </project>