summaryrefslogtreecommitdiff
path: root/spec/fixtures/java/11
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/java/11')
-rw-r--r--spec/fixtures/java/11/build.gradle13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/fixtures/java/11/build.gradle b/spec/fixtures/java/11/build.gradle
new file mode 100644
index 0000000..fa128ea
--- /dev/null
+++ b/spec/fixtures/java/11/build.gradle
@@ -0,0 +1,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'
+}