chia7712 commented on code in PR #17615:
URL: https://github.com/apache/kafka/pull/17615#discussion_r1825018667
##########
build.gradle:
##########
@@ -2803,18 +2793,13 @@ project(':streams:streams-scala') {
api project(':streams')
api libs.scalaLibrary
- testImplementation project(':group-coordinator')
- testImplementation project(':core')
testImplementation project(':test-common')
Review Comment:
remove this unused dependency
##########
build.gradle:
##########
@@ -2848,6 +2833,62 @@ project(':streams:streams-scala') {
}
}
+project(':streams:integration-tests') {
+ apply plugin: 'scala'
+
+ base {
+ archivesName = "kafka-streams-integration-tests"
+ }
+
+ dependencies {
+ testImplementation project(':clients').sourceSets.test.output
+ testImplementation project(':group-coordinator')
+ testImplementation project(':server')
+ testImplementation project(':server-common')
+ testImplementation project(':server-common').sourceSets.test.output
+ testImplementation project(':storage')
+ testImplementation project(':streams').sourceSets.test.output
+ testImplementation project(':streams:streams-scala')
+ testImplementation project(':test-common')
+ testImplementation project(':tools')
+ testImplementation project(':transaction-coordinator')
+ testImplementation libs.bcpkix
+ testImplementation libs.hamcrest
+ testImplementation libs.junitJupiter
+ testImplementation libs.junitPlatformSuiteEngine // supports suite test
+ testImplementation libs.mockitoCore
+ testImplementation libs.reload4j
+ testImplementation libs.slf4jApi
+ testImplementation project(':streams:test-utils')
+
+ testRuntimeOnly runtimeTestLibs
+ }
+
+ jar {
Review Comment:
remove this as there is no `copyDependantLibs`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]