diff options
| author | mo khan <mo.khan@gmail.com> | 2020-04-17 13:58:09 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-04-17 13:58:09 -0600 |
| commit | f16f093e26c1c2a87c2195453ae74c53eb3616bc (patch) | |
| tree | cb32abc63ee1d9d68f73bbf6329dcea5f04809a7 /spec/fixtures/java | |
| parent | d8274b1f48e2ccc98b99af0258feb86a5fe24fb7 (diff) | |
Test specific versions of gradle with matching versions of java
Diffstat (limited to 'spec/fixtures/java')
| -rw-r--r-- | spec/fixtures/java/build-11.gradle (renamed from spec/fixtures/java/build.gradle) | 0 | ||||
| -rw-r--r-- | spec/fixtures/java/build-8.gradle | 9 | ||||
| -rw-r--r-- | spec/fixtures/java/build.gradle.kts | 8 |
3 files changed, 14 insertions, 3 deletions
diff --git a/spec/fixtures/java/build.gradle b/spec/fixtures/java/build-11.gradle index fa128ea..fa128ea 100644 --- a/spec/fixtures/java/build.gradle +++ b/spec/fixtures/java/build-11.gradle diff --git a/spec/fixtures/java/build-8.gradle b/spec/fixtures/java/build-8.gradle new file mode 100644 index 0000000..b7cffcd --- /dev/null +++ b/spec/fixtures/java/build-8.gradle @@ -0,0 +1,9 @@ +apply plugin: 'groovy' + +repositories { + mavenCentral() +} + +dependencies { + compile 'org.postgresql:postgresql:42.1.4' +} diff --git a/spec/fixtures/java/build.gradle.kts b/spec/fixtures/java/build.gradle.kts index c842888..2ca8866 100644 --- a/spec/fixtures/java/build.gradle.kts +++ b/spec/fixtures/java/build.gradle.kts @@ -1,11 +1,13 @@ plugins { `java-library` } + repositories { jcenter() } + dependencies { - api("org.apache.commons:commons-math3:3.6.1") - implementation("com.google.guava:guava:28.1-jre") - testImplementation("junit:junit:4.12") + runtime("org.postgresql:postgresql:42.1.4") + implementation("com.google.guava:guava:28.1-jre") + testImplementation("junit:junit:4.12") } |
