-m.mmm-orm-jdbc-pool-hikari.0.9.8.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mmm-orm-jdbc-pool-hikari Show documentation
Show all versions of mmm-orm-jdbc-pool-hikari Show documentation
Connection pooling based on HikariCP.
The newest version!
/*
* Copyright (c) The m-m-m Team, Licensed under the Apache License, Version 2.0
* http://www.apache.org/licenses/LICENSE-2.0
*/
/**
* Provides connection pooling via HikariCP for {@code mmm-orm-jdbc}.
*
* @provides io.github.mmm.orm.connection.DbConnectionPoolProvider
*/
@SuppressWarnings("rawtypes") //
module io.github.mmm.orm.jdbc.pool.hikari {
requires transitive io.github.mmm.orm.jdbc;
requires com.zaxxer.hikari;
requires java.sql;
provides io.github.mmm.orm.connection.DbConnectionPoolProvider
with io.github.mmm.orm.jdbc.pool.hikari.HikariConnectionPoolProvider;
}