-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #66 from SolaceDev/upgrade/kafka-3.x
3.0.0 Release
- Loading branch information
Showing
19 changed files
with
89 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
group=com.solace.connector.kafka.connect | ||
version=2.3.0 | ||
version=3.0.0 |
Submodule solace-integration-test-support
updated
23 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 0 additions & 20 deletions
20
.../solace/connector/kafka/connect/source/it/util/extensions/NetworkPubSubPlusExtension.java
This file was deleted.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
...t/source/it/util/extensions/pubsubplus/pubsubplus/NetworkPubSubPlusContainerProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.solace.connector.kafka.connect.source.it.util.extensions.pubsubplus.pubsubplus; | ||
|
||
import com.solace.test.integration.junit.jupiter.extension.pubsubplus.provider.container.SimpleContainerProvider; | ||
import com.solace.test.integration.testcontainer.PubSubPlusContainer; | ||
import org.junit.jupiter.api.extension.ExtensionContext; | ||
import org.testcontainers.containers.Network; | ||
|
||
import java.util.function.Supplier; | ||
|
||
public class NetworkPubSubPlusContainerProvider extends SimpleContainerProvider { | ||
public static final Network DOCKER_NET = Network.newNetwork(); | ||
public static final String DOCKER_NET_PUBSUB_ALIAS = "solace-pubsubplus"; | ||
|
||
@Override | ||
public Supplier<PubSubPlusContainer> containerSupplier(ExtensionContext extensionContext) { | ||
return () -> new PubSubPlusContainer() | ||
.withNetwork(DOCKER_NET) | ||
.withNetworkAliases(DOCKER_NET_PUBSUB_ALIAS); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.