Rename spring-cloud-stream-binder-test

- Rename to spring-cloud-stream-test-support
- Make downstream binder dependency changes
This commit is contained in:
Soby Chacko
2022-11-29 16:26:14 -05:00
parent c9778d88c9
commit f0f88e5de0
23 changed files with 12 additions and 23 deletions

View File

@@ -41,7 +41,7 @@
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-test</artifactId>
<artifactId>spring-cloud-stream-test-support</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

View File

@@ -62,7 +62,7 @@
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-test</artifactId>
<artifactId>spring-cloud-stream-test-support</artifactId>
<scope>test</scope>
</dependency>
<!-- Following dependencies are needed to support Kafka 1.1.0 client-->

View File

@@ -57,7 +57,7 @@
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-test</artifactId>
<artifactId>spring-cloud-stream-test-support</artifactId>
<scope>test</scope>
</dependency>
<dependency>

View File

@@ -53,7 +53,7 @@
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-test</artifactId>
<artifactId>spring-cloud-stream-test-support</artifactId>
<scope>test</scope>
</dependency>
<dependency>

View File

@@ -70,7 +70,7 @@
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-test</artifactId>
<artifactId>spring-cloud-stream-test-support</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

View File

@@ -70,7 +70,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-test</artifactId>
<artifactId>spring-cloud-stream-test-support</artifactId>
<scope>test</scope>
</dependency>

View File

@@ -85,7 +85,7 @@
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-test</artifactId>
<artifactId>spring-cloud-stream-test-support</artifactId>
<scope>test</scope>
</dependency>
<dependency>

View File

@@ -28,11 +28,6 @@
<artifactId>spring-cloud-stream-test-binder</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-binder-test</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-stream-test-support</artifactId>

View File

@@ -4,10 +4,10 @@ if [ "$#" -eq 1 ]; then
ARGVALUE=$1
if [[ $ARGVALUE == *"skipTest"* ]]; then
echo "Skippping Tests"
./mvnw clean install -f core/pom.xml -DskipTests
./mvnw clean install -f binders/kafka-binder/pom.xml -DskipTests
elif [[ $ARGVALUE == *"disable.checks"* ]]; then
echo "Skippping checkstyle checks"
./mvnw clean install -f core/pom.xml -Ddisable.checks=true
./mvnw clean install -f binders/kafka-binder/pom.xml -Ddisable.checks=true
fi
else
./mvnw clean install -f binders/kafka-binder/pom.xml

View File

@@ -17,8 +17,8 @@
<modules>
<module>spring-cloud-stream</module>
<module>spring-cloud-stream-test-binder</module>
<module>spring-cloud-stream-binder-test</module>
<module>spring-cloud-stream-integration-tests</module>
<module>spring-cloud-stream-test-support</module>
</modules>
</project>

View File

@@ -4,10 +4,10 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-cloud-stream-binder-test</artifactId>
<artifactId>spring-cloud-stream-test-support</artifactId>
<packaging>jar</packaging>
<name>spring-cloud-stream-binder-test</name>
<name>spring-cloud-stream-test-support</name>
<description>Test support for binder implementations</description>
<parent>
@@ -44,11 +44,5 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>compile</scope>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.springframework.cloud</groupId>-->
<!-- <artifactId>spring-cloud-stream</artifactId>-->
<!-- <type>test-jar</type>-->
<!-- <classifier>test-binder</classifier>-->
<!-- </dependency>-->
</dependencies>
</project>