Skip to content

Commit

Permalink
Migrate remaining code from plugins -> plugin-development
Browse files Browse the repository at this point in the history
  • Loading branch information
tresat committed May 6, 2024
1 parent 7b74a03 commit fd5b435
Show file tree
Hide file tree
Showing 23 changed files with 1 addition and 57 deletions.
7 changes: 0 additions & 7 deletions .teamcity/subprojects.json
Original file line number Diff line number Diff line change
Expand Up @@ -748,13 +748,6 @@
"functionalTests": true,
"crossVersionTests": false
},
{
"name": "plugins",
"path": "subprojects/plugins",
"unitTests": false,
"functionalTests": true,
"crossVersionTests": false
},
{
"name": "plugins-application",
"path": "platforms/jvm/plugins-application",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ dependencies {
implementation(project(":testing-base"))
implementation(project(":testing-jvm"))
implementation(project(":test-suites-base"))
implementation(project(":plugins"))
implementation(project(":plugins-groovy"))
implementation(project(":plugins-java"))
implementation(project(":plugins-java-base"))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
package org.gradle.compile.daemon.ParallelCompilerDaemonIntegrationTest.shared
/**
* An immutable classpath.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ subprojects {
def count = (project.name - "project") as int
compileJava.options.forkOptions.jvmArgs = count % 2 ? ["-dsa"] : ["-esa"]
}

1 change: 0 additions & 1 deletion platforms/ide/ide-plugins/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ dependencies {
implementation(libs.commonsLang)

runtimeOnly(project(":language-jvm"))
runtimeOnly(project(":plugins"))
runtimeOnly(project(":testing-base"))

testImplementation(testFixtures(project(":core")))
Expand Down
1 change: 0 additions & 1 deletion platforms/ide/ide/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ dependencies {
implementation(project(":core"))
implementation(project(":base-services-groovy"))
implementation(project(":dependency-management"))
implementation(project(":plugins"))
implementation(project(":plugins-java"))
implementation(project(":plugins-java-base"))
implementation(project(":platform-base"))
Expand Down
2 changes: 0 additions & 2 deletions platforms/jvm/ear/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ dependencies {
implementation(libs.guava)
implementation(libs.commonsLang)

runtimeOnly(project(":plugins"))

testImplementation(project(":base-services-groovy"))
testImplementation(testFixtures(project(":core")))
testImplementation(project(":native"))
Expand Down
3 changes: 0 additions & 3 deletions platforms/jvm/java-platform/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ dependencies {
testImplementation(project(":language-java")) {
because("need to access JavaCompile task")
}
testImplementation(project(":plugins")) {
because("need to access JavaPluginExtension")
}

testImplementation(testFixtures(project(":core")))

Expand Down
1 change: 0 additions & 1 deletion platforms/jvm/testing-jvm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ dependencies {
testImplementation(testFixtures(project(":core")))
testImplementation(testFixtures(project(":model-core")))

integTestImplementation(project(":plugins"))
integTestImplementation(testFixtures(project(":testing-base")))
integTestImplementation(testFixtures(project(":language-groovy")))

Expand Down
1 change: 0 additions & 1 deletion platforms/jvm/war/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ dependencies {
implementation(project(":plugins-java"))
implementation(project(":plugins-jvm-test-suite"))

runtimeOnly(project(":plugins"))
runtimeOnly(project(":testing-base"))


Expand Down
1 change: 0 additions & 1 deletion platforms/native/language-native/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ dependencies {
implementation(project(":dependency-management"))
implementation(project(":platform-base"))
implementation(project(":platform-native"))
implementation(project(":plugins"))
implementation(project(":publish"))
implementation(project(":maven"))
implementation(project(":ivy"))
Expand Down
1 change: 0 additions & 1 deletion platforms/software/antlr/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ dependencies {
}

runtimeOnly(project(":language-jvm"))
runtimeOnly(project(":plugins"))
runtimeOnly(project(":workers"))

testImplementation(project(":base-services-groovy"))
Expand Down
1 change: 0 additions & 1 deletion platforms/software/build-init/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ dependencies {
testFixturesImplementation(project(":platform-base"))
testFixturesImplementation(project(":core-api"))
testFixturesImplementation(project(":logging"))
testFixturesImplementation(project(":plugins"))
testFixturesImplementation(project(":plugins-java"))
testFixturesImplementation(project(":testing-base"))
testFixturesImplementation(project(":test-suites-base"))
Expand Down
2 changes: 0 additions & 2 deletions subprojects/core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,6 @@ dependencies {
integTestImplementation(project(":workers"))
integTestImplementation(project(":dependency-management"))
integTestImplementation(project(":launcher"))
integTestImplementation(project(":plugins"))
integTestImplementation(project(":war"))
integTestImplementation(libs.jansi)
integTestImplementation(libs.jetbrainsAnnotations)
Expand Down Expand Up @@ -304,4 +303,3 @@ tasks.compileTestGroovy {

integTest.usesJavadocCodeSnippets = true
testFilesCleanup.reportOnly = true

33 changes: 0 additions & 33 deletions subprojects/plugins/build.gradle.kts

This file was deleted.

1 change: 0 additions & 1 deletion testing/integ-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ dependencies {

crossVersionTestImplementation(project(":base-services"))
crossVersionTestImplementation(project(":core"))
crossVersionTestImplementation(project(":plugins"))
crossVersionTestImplementation(project(":plugins-application"))
crossVersionTestImplementation(project(":platform-jvm"))
crossVersionTestImplementation(project(":language-jvm"))
Expand Down

0 comments on commit fd5b435

Please sign in to comment.