You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2021/04/19 12:31:01 UTC

[camel] branch master updated: CAMEL-16400: adjust manual integration tests for camel-spring-batch (#5419)

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new f0fcff7  CAMEL-16400: adjust manual integration tests for camel-spring-batch (#5419)
f0fcff7 is described below

commit f0fcff7e336dd3c64c213c22210ee7220631ee0f
Author: Otavio Rodolfo Piske <or...@users.noreply.github.com>
AuthorDate: Mon Apr 19 14:30:08 2021 +0200

    CAMEL-16400: adjust manual integration tests for camel-spring-batch (#5419)
---
 components/camel-spring-batch/pom.xml                            | 9 +++++++++
 .../{SpringBatchIntegrationTest.java => SpringBatchIT.java}      | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/components/camel-spring-batch/pom.xml b/components/camel-spring-batch/pom.xml
index 42f13cd..45cdccb 100644
--- a/components/camel-spring-batch/pom.xml
+++ b/components/camel-spring-batch/pom.xml
@@ -80,4 +80,13 @@
         </dependency>
     </dependencies>
 
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-failsafe-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>
diff --git a/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchIntegrationTest.java b/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchIT.java
similarity index 97%
rename from components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchIntegrationTest.java
rename to components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchIT.java
index cb7bff3..666ec8a 100644
--- a/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchIntegrationTest.java
+++ b/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchIT.java
@@ -24,7 +24,7 @@ import org.junit.jupiter.api.Test;
 import org.springframework.context.support.AbstractApplicationContext;
 import org.springframework.context.support.ClassPathXmlApplicationContext;
 
-public class SpringBatchIntegrationTest extends CamelSpringTestSupport {
+public class SpringBatchIT extends CamelSpringTestSupport {
     @EndpointInject("mock:header")
     MockEndpoint headerEndpoint;