Repository: camel Updated Branches: refs/heads/master 4553bb6f8 -> 4233b61f2
camel-spring-batch: migrate tests from commons-lang 2 to commons-lang 3 Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/4233b61f Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/4233b61f Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/4233b61f Branch: refs/heads/master Commit: 4233b61f2579d72d8944ba38f0d7942ee280bcd4 Parents: 4553bb6 Author: Pascal Schumacher <pascalschumac...@gmx.net> Authored: Fri Sep 29 21:41:46 2017 +0200 Committer: Pascal Schumacher <pascalschumac...@gmx.net> Committed: Fri Sep 29 21:41:46 2017 +0200 ---------------------------------------------------------------------- components/camel-spring-batch/pom.xml | 6 +++--- .../camel/component/spring/batch/SpringBatchEndpointTest.java | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/4233b61f/components/camel-spring-batch/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-spring-batch/pom.xml b/components/camel-spring-batch/pom.xml index ceae415..d553e29 100644 --- a/components/camel-spring-batch/pom.xml +++ b/components/camel-spring-batch/pom.xml @@ -65,9 +65,9 @@ <scope>test</scope> </dependency> <dependency> - <groupId>commons-lang</groupId> - <artifactId>commons-lang</artifactId> - <version>${commons-lang-version}</version> + <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> + <version>${commons-lang3-version}</version> <scope>test</scope> </dependency> <dependency> http://git-wip-us.apache.org/repos/asf/camel/blob/4233b61f/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchEndpointTest.java ---------------------------------------------------------------------- diff --git a/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchEndpointTest.java b/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchEndpointTest.java index da09770..36a8822 100644 --- a/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchEndpointTest.java +++ b/components/camel-spring-batch/src/test/java/org/apache/camel/component/spring/batch/SpringBatchEndpointTest.java @@ -30,7 +30,7 @@ import org.apache.camel.impl.DefaultCamelContext; import org.apache.camel.impl.JndiRegistry; import org.apache.camel.impl.SimpleRegistry; import org.apache.camel.test.junit4.CamelTestSupport; -import org.apache.commons.lang.reflect.FieldUtils; +import org.apache.commons.lang3.reflect.FieldUtils; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.ArgumentCaptor;