summaryrefslogtreecommitdiff
path: root/spec/fixtures/java/gradle/java-11/build.gradle
blob: fa128ea96a92dcc92b6da2c41f88a479e0a7560e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
plugins {
  id 'java-library'
}

repositories {
  jcenter()
}

dependencies {
  runtime "org.postgresql:postgresql:42.1.4"
  implementation 'com.google.guava:guava:28.2-jre'
  testImplementation 'junit:junit:4.12'
}