Skip to content

Commit

Permalink
Add enterprise-operations subproject
Browse files Browse the repository at this point in the history
  • Loading branch information
lptr committed Oct 6, 2021
1 parent a561594 commit 3a65949
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ subprojects/snapshots/ @gradle/execution @marcphilipp @britter

# Gradle Enterprise
subprojects/enterprise/ @ldaley @marcphilipp
subprojects/enterprise-operations/ @facewindu

# Testing
subprojects/testing-junit-platform/ @gradle/ge-test-distribution
Expand Down
7 changes: 7 additions & 0 deletions .teamcity/subprojects.json
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,13 @@
"functionalTests": true,
"crossVersionTests": false
},
{
"dirName": "enterprise-operations",
"name": "enterprise-operations",
"unitTests": false,
"functionalTests": false,
"crossVersionTests": false
},
{
"dirName": "execution",
"name": "execution",
Expand Down
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ include("base-annotations")
include("security")
include("normalization-java")
include("enterprise")
include("enterprise-operations")
include("build-operations")
include("problems")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ abstract class DistributionIntegrationSpec extends AbstractIntegrationSpec {
* Change this whenever you add or remove subprojects for distribution core modules (lib/).
*/
int getCoreLibJarsCount() {
38
39
}

/**
Expand Down
9 changes: 9 additions & 0 deletions subprojects/enterprise-operations/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
plugins {
id("gradlebuild.distribution.api-java")
}

dependencies {
api(project(":build-operations"))

implementation(libs.jsr305)
}
1 change: 1 addition & 0 deletions subprojects/enterprise/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {

dependencies {
api(project(":base-services")) // leaks BuildOperationNotificationListener on API
api(project(":enterprise-operations"))

implementation(libs.jsr305)
implementation(libs.inject)
Expand Down

0 comments on commit 3a65949

Please sign in to comment.