Skip to content

Commit

Permalink
Move all extensibility related projects to an extensibility platform
Browse files Browse the repository at this point in the history
  • Loading branch information
big-guy committed Nov 16, 2023
1 parent 2b0ac69 commit 5b38a89
Show file tree
Hide file tree
Showing 202 changed files with 11 additions and 9 deletions.
3 changes: 0 additions & 3 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,6 @@ platforms/software/ @gradle/bt-jvm

# Extensibility
platforms/extensibility/ @gradle/bt-extensibility-maintainers
subprojects/plugin-development/ @gradle/bt-extensibility-maintainers
subprojects/plugin-use/ @gradle/bt-extensibility-maintainers
subprojects/test-kit/ @gradle/bt-extensibility-maintainers

# Native
platforms/native/ @gradle/bt-native-maintainers
Expand Down
6 changes: 3 additions & 3 deletions .teamcity/subprojects.json
Original file line number Diff line number Diff line change
Expand Up @@ -659,14 +659,14 @@
},
{
"name": "plugin-development",
"path": "subprojects/plugin-development",
"path": "platforms/extensibility/plugin-development",
"unitTests": true,
"functionalTests": true,
"crossVersionTests": true
},
{
"name": "plugin-use",
"path": "subprojects/plugin-use",
"path": "platforms/extensibility/plugin-use",
"unitTests": true,
"functionalTests": true,
"crossVersionTests": false
Expand Down Expand Up @@ -862,7 +862,7 @@
},
{
"name": "test-kit",
"path": "subprojects/test-kit",
"path": "platforms/extensibility/test-kit",
"unitTests": true,
"functionalTests": true,
"crossVersionTests": false
Expand Down
File renamed without changes.
File renamed without changes.
11 changes: 8 additions & 3 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ unassigned {
subproject("plugins")
subproject("build-events")
subproject("diagnostics")
subproject("plugin-use")
subproject("plugin-development")
subproject("test-kit")
subproject("installation-beacon")
subproject("composite-builds")
subproject("core-api")
Expand Down Expand Up @@ -123,6 +120,13 @@ platform("core-execution") {
subproject("workers")
}

// Extensibility Platform
platform("extensibility") {
subproject("plugin-use")
subproject("plugin-development")
subproject("test-kit")
}

// IDE Platform
platform("ide") {
subproject("base-ide-plugins")
Expand All @@ -135,6 +139,7 @@ platform("ide") {
subproject("tooling-api-builders")
}

// Native Platform
platform("native") {
subproject("distributions-native")
subproject("platform-native")
Expand Down

0 comments on commit 5b38a89

Please sign in to comment.