All module names now have an accurest prefix

This commit is contained in:
Jakub Kubrynski
2015-01-27 14:55:09 +01:00
parent a2763f7c1c
commit af91a9c452
17 changed files with 26 additions and 4 deletions

View File

@@ -0,0 +1,22 @@
package io.codearte.accurest.plugin
import org.gradle.api.Project
import org.gradle.testfixtures.ProjectBuilder
import spock.lang.Ignore
import spock.lang.Specification
/**
* @author Jakub Kubrynski
*/
@Ignore
class AccurestGradlePluginTest extends Specification {
def void greeterPluginAddsGreetingTaskToProject() {
when:
Project project = ProjectBuilder.builder().build()
project.apply plugin: 'accurest'
then:
project.tasks.generateAccurest
}
}

View File

@@ -36,12 +36,12 @@ subprojects {
}
}
project(':core') {
project(':accurest-core') {
}
project(':gradle-plugin') {
project(':accurest-gradle-plugin') {
dependencies {
compile project(':core')
compile project(':accurest-core')
compile gradleApi()
}
}

View File

@@ -1,2 +1,2 @@
include "core", "gradle-plugin"
include "accurest-core", "accurest-gradle-plugin"
rootProject.name = "accurest"