Base plugin should be called jruby-gradle-plugin for now

This commit is contained in:
Schalk W. Cronjé 2018-08-29 16:53:07 +01:00
parent d583a85cf9
commit 27424d647c
5 changed files with 9 additions and 5 deletions

View File

@ -70,4 +70,3 @@ publishGhPages.dependsOn assembleDocs
/* We don't need an upload task in here */
//bintrayUpload.enabled = false

View File

@ -10,7 +10,7 @@ configurations {
}
dependencies {
compile project(':jruby-gradle-base-plugin')
compile project(':jruby-gradle-plugin')
compile 'com.github.jengelman.gradle.plugins:shadow:[1.2.2,2.0)'
testCompile (spockVersion) {

View File

@ -66,7 +66,7 @@ dependencies {
/* add our TestKit classpath to our test runtime so we can find it again */
integrationTestRuntime files(prepareGradleTestKitClasspath)
gradleTest project(':jruby-gradle-base-plugin')
gradleTest project(':jruby-gradle-plugin')
gradleTest 'com.github.jengelman.gradle.plugins:shadow:[1.2.2,2.0)'
testJRubyPrepare "org.jruby:jruby-complete:1.7.19"

View File

@ -4,7 +4,7 @@ version = "${rootProject.version}-alpha"
dependencies {
compile project(':jruby-gradle-base-plugin')
compile project(':jruby-gradle-plugin')
compile group: 'com.github.jruby-gradle', name: 'warbler-bootstrap', version: '0.2.0+'
testCompile (spockVersion) {

View File

@ -1 +1,6 @@
include 'jruby-gradle-base-plugin', 'jruby-gradle-jar-plugin', 'jruby-gradle-war-plugin', 'docs'
include 'jruby-gradle-plugin'
include 'jruby-gradle-jar-plugin'
include 'jruby-gradle-war-plugin'
include 'docs'
project(':jruby-gradle-plugin').projectDir = file('jruby-gradle-base-plugin')