Skip to content

Commit

Permalink
Apply projectHealth recommendations to platform-base (#28161)
Browse files Browse the repository at this point in the history
  • Loading branch information
bot-gradle committed Feb 28, 2024
2 parents 0053122 + 4f394b1 commit dd4312a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ systemProp.dependency.analysis.test.analysis=false
unmigratedProjects=\
build-cache-base,build-cache-packaging,hashing,snapshots,\
enterprise,enterprise-logging,enterprise-plugin-performance,ide,ide-native,installation-beacon,internal-integ-testing,internal-performance-testing,internal-testing,kotlin-dsl,kotlin-dsl-plugins,\
kotlin-dsl-provider-plugins,kotlin-dsl-tooling-models,language-native,launcher,performance,platform-base,platform-native,plugin-development,\
kotlin-dsl-provider-plugins,kotlin-dsl-tooling-models,language-native,launcher,performance,platform-native,plugin-development,\
plugin-use,plugins,problems,problems-api,\
testing-native,test-kit,tooling-api,tooling-api-builders,tooling-native,worker-services,workers,wrapper
29 changes: 15 additions & 14 deletions platforms/software/platform-base/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,33 +12,34 @@ errorprone {
)
}
dependencies {
implementation(project(":base-services"))
implementation(project(":logging"))
implementation(project(":core-api"))
implementation(project(":files"))
implementation(project(":model-core"))
implementation(project(":core"))
implementation(project(":dependency-management"))
implementation(project(":workers"))
api(project(":base-annotations"))
api(project(":base-services"))
api(project(":core"))
api(project(":core-api"))
api(project(":dependency-management"))
api(project(":files"))
api(project(":logging"))
api(project(":model-core"))

api(libs.guava)
api(libs.inject)
api(libs.jsr305)

implementation(project(":execution"))

implementation(libs.groovy)
implementation(libs.guava)
implementation(libs.commonsLang)
implementation(libs.inject)

testImplementation(testFixtures(project(":core")))
testImplementation(testFixtures(project(":core-api")))
testImplementation(project(":native"))
testImplementation(project(":snapshots"))
testImplementation(project(":process-services"))

testFixturesApi(project(":core"))
testFixturesApi(project(":file-collections"))
testFixturesApi(testFixtures(project(":diagnostics")))
testFixturesApi(testFixtures(project(":model-core")))

testFixturesImplementation(libs.guava)
testFixturesApi(testFixtures(project(":model-core")))
testFixturesApi(testFixtures(project(":diagnostics")))

testRuntimeOnly(project(":distributions-core")) {
because("RuntimeShadedJarCreatorTest requires a distribution to access the ...-relocated.txt metadata")
Expand Down

0 comments on commit dd4312a

Please sign in to comment.