All module names now have an accurest prefix
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
@@ -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()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
include "core", "gradle-plugin"
|
||||
include "accurest-core", "accurest-gradle-plugin"
|
||||
rootProject.name = "accurest"
|
||||
Reference in New Issue
Block a user