From b3faccb3e3007ddfd41ef251ad8a925542fe2500 Mon Sep 17 00:00:00 2001 From: mo khan Date: Mon, 20 Jul 2020 15:55:59 -0600 Subject: Update maven/gradle offline tests * Let maven figure out the version of the license plugin that it is compatible with * Print the error when the setup fails * Add tests for multiple versions of maven and java * Install packages into a project specific directory to prevent cross test pollution * Specify the list of supported Maven versions * Update CHANGELOG and bump the version --- spec/fixtures/java/gradle/java-11/build.gradle | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 spec/fixtures/java/gradle/java-11/build.gradle (limited to 'spec/fixtures/java/gradle/java-11') diff --git a/spec/fixtures/java/gradle/java-11/build.gradle b/spec/fixtures/java/gradle/java-11/build.gradle new file mode 100644 index 0000000..fa128ea --- /dev/null +++ b/spec/fixtures/java/gradle/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' +} -- cgit v1.2.3