-
Notifications
You must be signed in to change notification settings - Fork 54
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
feat!: STREAMP-9951: spring 3 #340
Conversation
pom.xml
Outdated
@@ -72,19 +72,19 @@ | |||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | |||
<jdk.version>8</jdk.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we delete this? 🤔
<jdk.version>8</jdk.version> |
@@ -74,7 +78,7 @@ public class AgentIT { | |||
.pollDelay(1, SECONDS); | |||
|
|||
@Rule | |||
public KafkaContainer kafka = new KafkaContainer(); | |||
public KafkaContainer kafka = new KafkaContainer(DockerImageName.parse("confluentinc/cp-kafka:7.2.1")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
perhaps put the string somewhere it can be shared with StateIT.java?
import org.testcontainers.utility.DockerImageName; | ||
|
||
public class TestUtils { | ||
public static DockerImageName kafkaImageName = DockerImageName.parse("confluentinc/cp-kafka:7.4.0"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor, would this be more usual idiomatic Java?
public static DockerImageName kafkaImageName = DockerImageName.parse("confluentinc/cp-kafka:7.4.0"); | |
public static final DockerImageName KAFKA_IMAGE_NAME = DockerImageName.parse("confluentinc/cp-kafka:7.4.0"); |
No description provided.