Merge pull request #20 from aguibert/liberty-gradle-plugin-update

Upgrade to version 2.1.1 of liberty gradle plugin so 1 wlp install can be used
This commit is contained in:
Andrew Guibert 2018-02-19 10:33:26 -06:00 committed by GitHub
commit 7fcff95bc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,13 @@
buildscript {
repositories {
mavenCentral()
maven {
name = 'Sonatype Nexus Snapshots'
url = 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
classpath 'net.wasdev.wlp.gradle.plugins:liberty-gradle-plugin:2.0.1'
classpath 'net.wasdev.wlp.gradle.plugins:liberty-gradle-plugin:2.1.1-SNAPSHOT'
}
}
@ -16,9 +20,13 @@ subprojects {
buildscript {
repositories {
mavenCentral()
maven {
name = 'Sonatype Nexus Snapshots'
url = 'https://oss.sonatype.org/content/repositories/snapshots/'
}
}
dependencies {
classpath 'net.wasdev.wlp.gradle.plugins:liberty-gradle-plugin:2.0.1'
classpath 'net.wasdev.wlp.gradle.plugins:liberty-gradle-plugin:2.1.1-SNAPSHOT'
}
}
@ -49,8 +57,7 @@ subprojects {
liberty {
install {
// use 1 liberty install for the whole repo
// TODO: re-enable this one liberty-gradle-plugin bug is fixed
// baseDir = rootProject.buildDir
baseDir = rootProject.buildDir
runtimeUrl = "https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/downloads/wlp/beta/wlp-beta-2018.2.0.0.zip"
}
}