Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust transform-service module names and deps with sdks/java/core #30237

Merged
merged 1 commit into from
Feb 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdks/java/transform-service/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply plugin: 'org.apache.beam.module'
apply plugin: 'application'

applyJavaNature(
automaticModuleName: 'org.apache.beam.sdk.transform.service.app',
automaticModuleName: 'org.apache.beam.sdk.transformservice.app',
exportJavadoc: false,
validateShadowJar: false,
shadowClosure: {},
Expand Down
2 changes: 1 addition & 1 deletion sdks/java/transform-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
apply plugin: 'org.apache.beam.module'

applyJavaNature(
automaticModuleName: 'org.apache.beam.sdk.transform.service',
automaticModuleName: 'org.apache.beam.sdk.transformservice',
exportJavadoc: false,
validateShadowJar: false,
shadowClosure: {},
Expand Down
7 changes: 2 additions & 5 deletions sdks/java/transform-service/launcher/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
apply plugin: 'org.apache.beam.module'

applyJavaNature(
automaticModuleName: 'org.apache.beam.sdk.transform.service',
automaticModuleName: 'org.apache.beam.sdk.transformservice.launcher',
)

description = "Apache Beam :: SDKs :: Java :: Transform Service :: Launcher"
Expand All @@ -28,9 +28,7 @@ ext.summary = """Contains code that can be used to run an transform service."""
// Exclude tests that need a runner
test {
systemProperty "beamUseDummyRunner", "true"
useJUnit {
excludeCategories "org.apache.beam.sdk.testing.NeedsRunner"
}
useJUnit { }
}

dependencies {
Expand All @@ -42,7 +40,6 @@ dependencies {
permitUnusedDeclared(library.java.error_prone_annotations)
testImplementation library.java.junit
testImplementation library.java.mockito_core
testImplementation project(path: ":sdks:java:core")
}

sourceSets {
Expand Down
Loading