blob: 2ca88669e905c02921d25dafefe4568ac354e537 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
plugins {
`java-library`
}
repositories {
jcenter()
}
dependencies {
runtime("org.postgresql:postgresql:42.1.4")
implementation("com.google.guava:guava:28.1-jre")
testImplementation("junit:junit:4.12")
}
|