Agroal


home  
github  
license  
issues  
The natural database connection pool

News Releases Docs About

If you are using maven the easiest would be to add this to your pom.xml:
<dependency>
      <groupId>io.agroal</groupId>
      <artifactId>agroal-api</artifactId>
      <version>${version.io.agroal}</version>
</dependency>
<dependency>
      <groupId>io.agroal</groupId>
      <artifactId>agroal-pool</artifactId>
      <version>${version.io.agroal}</version>
      <scope>runtime</scope>
</dependency>
For gradle builds add the following dependency:
dependencies {
    compile group: 'io.agroal', name: 'agroal-api', version: '${version.io.agroal}'
    runtime group: 'io.agroal', name: 'agroal-pool', version: '${version.io.agroal}'
}
The releases are distributed through Maven Central repository, so no extra configuration should be necessary.