Skip to content

Commit 40d9da6

Browse files
author
R. Tyler Croy
committed
Rename the plugin in tests
1 parent 01a7848 commit 40d9da6

12 files changed

+11
-11
lines changed

src/integTest/groovy/com/github/jrubygradle/JRubyExecExtensionIntegrationSpec.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class JRubyExecExtensionIntegrationSpec extends Specification {
2525
project.with {
2626
buildDir = TESTROOT
2727
logging.level = LIFECYCLE
28-
apply plugin: 'com.lookout.jruby'
28+
apply plugin: 'com.github.jruby-gradle.base'
2929
evaluate()
3030
}
3131
}

src/integTest/groovy/com/github/jrubygradle/JRubyExecIntegrationSpec.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class JRubyExecIntegrationSpec extends Specification {
2626
project = ProjectBuilder.builder().build()
2727
project.buildDir = TESTROOT
2828
project.logging.level = LIFECYCLE
29-
project.apply plugin: 'com.lookout.jruby'
29+
project.apply plugin: 'com.github.jruby-gradle.base'
3030
execTask = project.task(TASK_NAME,type: JRubyExec)
3131
}
3232

src/integTest/groovy/com/github/jrubygradle/JRubyPluginIntegrationSpec.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class JRubyPluginIntegrationSpec extends Specification {
2020
project = ProjectBuilder.builder().build()
2121
project.buildDir = TESTROOT
2222
project.logging.level = LIFECYCLE
23-
project.apply plugin: 'com.lookout.jruby'
23+
project.apply plugin: 'com.github.jruby-gradle.base'
2424
}
2525

2626
@IgnoreIf({TESTS_ARE_OFFLINE})

src/integTest/groovy/com/github/jrubygradle/JRubyPrepareGemsIntegrationSpec.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class JRubyPrepareGemsIntegrationSpec extends Specification {
3232
project.with {
3333
buildDir = TESTROOT
3434
logging.level = LIFECYCLE
35-
apply plugin: 'com.lookout.jruby'
35+
apply plugin: 'com.github.jruby-gradle.base'
3636
}
3737

3838
prepTask = project.task(TASK_NAME, type: JRubyPrepareGems)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
implementation-class=com.github.jrubygradle.JRubyPlugin

src/main/resources/META-INF/gradle-plugins/com.github.jruby-gradle.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/test/groovy/com/github/jrubygradle/JRubyExecSpec.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class JRubyExecSpec extends Specification {
2727
project = ProjectBuilder.builder().build()
2828
project.buildDir = TESTROOT
2929
project.logging.level = LIFECYCLE
30-
project.apply plugin: 'com.lookout.jruby'
30+
project.apply plugin: 'com.github.jruby-gradle.base'
3131
execTask = project.task(TASK_NAME, type: JRubyExec)
3232
}
3333

src/test/groovy/com/github/jrubygradle/JRubyJarSpec.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class JRubyJarSpec extends Specification {
2020
project = ProjectBuilder.builder().build()
2121
project.buildDir = TESTROOT
2222
project.logging.level = LIFECYCLE
23-
project.apply plugin: 'com.lookout.jruby'
23+
project.apply plugin: 'com.github.jruby-gradle.base'
2424
jarTask = project.task(TASK_NAME, type: JRubyJar)
2525

2626
}

src/test/groovy/com/github/jrubygradle/JRubyPluginTest.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class JRubyPluginTest {
2626
TESTROOT.mkdirs()
2727
project = ProjectBuilder.builder().build()
2828
project.logging.level = LIFECYCLE
29-
project.apply plugin: 'com.lookout.jruby'
29+
project.apply plugin: 'com.github.jruby-gradle.base'
3030
}
3131

3232
@Test

src/test/groovy/com/github/jrubygradle/JRubyPrepareGemsSpec.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class JRubyPrepareGemsSpec extends Specification {
3333
project.with {
3434
buildDir = TESTROOT
3535
logging.level = LIFECYCLE
36-
apply plugin: 'com.lookout.jruby'
36+
apply plugin: 'com.github.jruby-gradle.base'
3737
jruby.defaultRepositories = false
3838

3939
repositories {

0 commit comments

Comments
 (0)