gravitee-am-identityprovider-jdbc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.gravitee.am.identityprovider</groupId> <artifactId>gravitee-am-identityprovider-jdbc</artifactId> <version>4.8.0-alpha.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (C) 2015 The Gravitee team (http://gravitee.io) Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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> <artifactId>gravitee-am-identityprovider</artifactId> <groupId>io.gravitee.am.identityprovider</groupId> <version>4.8.0-alpha.1</version> </parent> <artifactId>gravitee-am-identityprovider-jdbc</artifactId> <version>4.8.0-alpha.1</version> <name>Gravitee IO - Access Management - Identity Provider - JDBC</name> <dependencies> <!-- Gravitee.io --> <dependency> <groupId>io.gravitee.am.identityprovider</groupId> <artifactId>gravitee-am-identityprovider-api</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.gravitee.am.service</groupId> <artifactId>gravitee-am-service</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.gravitee.am.repository</groupId> <artifactId>gravitee-am-repository-api</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.gravitee.am.repository</groupId> <artifactId>gravitee-am-repository-jdbc-api</artifactId> <version>${project.version}</version> <exclusions> <exclusion> <artifactId>spring-data-r2dbc</artifactId> <groupId>org.springframework.data</groupId> </exclusion> </exclusions> </dependency> <dependency> <artifactId>spring-data-r2dbc</artifactId> <groupId>org.springframework.data</groupId> <version>${spring-data-r2dbc.version}</version> <scope>test</scope> </dependency> <!-- R2DBC --> <dependency> <groupId>org.postgresql</groupId> <artifactId>r2dbc-postgresql</artifactId> <exclusions> <exclusion> <artifactId>r2dbc-spi</artifactId> <groupId>io.r2dbc</groupId> </exclusion> <exclusion> <artifactId>reactor-core</artifactId> <groupId>io.projectreactor</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.r2dbc</groupId> <artifactId>r2dbc-mssql</artifactId> <exclusions> <exclusion> <artifactId>r2dbc-spi</artifactId> <groupId>io.r2dbc</groupId> </exclusion> <exclusion> <artifactId>reactor-core</artifactId> <groupId>io.projectreactor</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.asyncer</groupId> <artifactId>r2dbc-mysql</artifactId> <version>${r2dbc-mysql.version}</version> <exclusions> <exclusion> <artifactId>r2dbc-spi</artifactId> <groupId>io.r2dbc</groupId> </exclusion> <exclusion> <artifactId>reactor-core</artifactId> <groupId>io.projectreactor</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mariadb</groupId> <artifactId>r2dbc-mariadb</artifactId> <exclusions> <exclusion> <artifactId>r2dbc-spi</artifactId> <groupId>io.r2dbc</groupId> </exclusion> <exclusion> <artifactId>reactor-core</artifactId> <groupId>io.projectreactor</groupId> </exclusion> </exclusions> </dependency> <!-- Spring --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <scope>provided</scope> </dependency> <!-- Jackson --> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>provided</scope> </dependency> <!-- Vert.x --> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-rx-java3</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-web-client</artifactId> <scope>provided</scope> </dependency> <!-- Test dependencies --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>testcontainers</artifactId> <version>${test-container.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>r2dbc</artifactId> <version>${test-container.version}</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>r2dbc-spi</artifactId> <groupId>io.r2dbc</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>postgresql</artifactId> <version>${test-container.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mysql</artifactId> <version>${test-container.version}</version> <scope>test</scope> </dependency> <dependency> <!-- Gravitee only uses this dependency to test the connectivity to MySQL databases and does not supply or bundle the mysql-connector-java in the software as per the license in: https://github.com/mysql/mysql-connector-j/blob/release/8.0/LICENSE --> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> <version>8.0.33</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mariadb</artifactId> <version>${test-container.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mariadb.jdbc</groupId> <artifactId>mariadb-java-client</artifactId> <version>2.7.12</version> <scope>test</scope> </dependency> <dependency> <groupId>org.testcontainers</groupId> <artifactId>mssqlserver</artifactId> <version>${test-container.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> <version>8.4.1.jre14</version> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <phase>initialize</phase> <id>load-plugin-properties</id> <goals> <goal>read-project-properties</goal> </goals> <configuration> <files> <file>${project.basedir}/src/main/resources/plugin.properties</file> </files> <quiet>false</quiet> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <configuration> <appendAssemblyId>false</appendAssemblyId> <descriptors> <descriptor>src/main/assembly/plugin-assembly.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-plugin-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> </project>