Skip to content

Commit

Permalink
Fix missing plugins for newer scm plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielThomas committed Aug 16, 2016
1 parent 6cb8ab1 commit 9fb2cf0
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class DependencyLockCommitLauncherSpec extends IntegrationSpec {

def 'commitLock no-ops when no scm implementation is applied'() {
buildFile << DependencyLockLauncherSpec.BUILD_GRADLE
buildFile << 'apply plugin: \'gradle-scm\''
buildFile << 'apply plugin: \'nebula.gradle-scm\''

when:
runTasksSuccessfully('generateLock', 'saveLock', 'commitLock')
Expand All @@ -56,7 +56,7 @@ class DependencyLockCommitLauncherSpec extends IntegrationSpec {
def git = commonGitSetup(gitDir)

buildFile << DependencyLockLauncherSpec.BUILD_GRADLE
buildFile << 'apply plugin: \'gradle-git-scm\''
buildFile << 'apply plugin: \'nebula.gradle-git-scm\''

finishGitSetup(['build.gradle', 'settings.gradle'])

Expand All @@ -80,7 +80,7 @@ class DependencyLockCommitLauncherSpec extends IntegrationSpec {
subprojects {
apply plugin: 'java'
apply plugin: 'nebula.dependency-lock'
apply plugin: 'gradle-scm'
apply plugin: 'nebula.gradle-scm'
repositories { maven { url '${Fixture.repo}' } }
}
""".stripIndent()
Expand Down Expand Up @@ -122,7 +122,7 @@ class DependencyLockCommitLauncherSpec extends IntegrationSpec {
subprojects {
apply plugin: 'java'
apply plugin: 'nebula.dependency-lock'
apply plugin: 'gradle-git-scm'
apply plugin: 'nebula.gradle-git-scm'
repositories { maven { url '${Fixture.repo}' } }
}
""".stripIndent()
Expand Down Expand Up @@ -169,7 +169,7 @@ class DependencyLockCommitLauncherSpec extends IntegrationSpec {
subprojects {
apply plugin: 'java'
apply plugin: 'nebula.dependency-lock'
apply plugin: 'gradle-git-scm'
apply plugin: 'nebula.gradle-git-scm'
repositories { maven { url '${Fixture.repo}' } }
}
""".stripIndent()
Expand Down

0 comments on commit 9fb2cf0

Please sign in to comment.