-
Notifications
You must be signed in to change notification settings - Fork 72
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
Support Scala 2.10 #17
Comments
This would be easier with SBT, I don't think gradle supports cross compilation with different scala versions. |
@jadams74 Were you able to resolve this problem in a satisfying way? |
@mbode No. Use docker. |
@jadams74 Could you go into a bit more detail? Are you using a Docker image containing a Kafka broker and then running your tests against that? |
@jadams74 I wrote a similar library for Scala. You may want to have a look at it. https://github.com/manub/scalatest-embedded-kafka. @chbatey - hope you don't mind me writing this message! |
Would like to use this in a project that requires scala 2.10. kafka-unit is using org.apache.kafka:kafka_2.11 I need org.apache.kafka:kafka_2.10 for my projects.
compile('org.apache.kafka:kafka_2.11:0.8.2.2')
This dependency conflict causes fatal errors during KafkaServer startup:
I don't know the best way to proceed and support multiple scala versions but I can try a pull request if given the right direction. I was in the middle of writing a similar framework and would prefer to commit here then duplicate this work.
The text was updated successfully, but these errors were encountered: