This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 7f3a36ffb04960db7e8ae02c4eb00e80545a9b15 Author: Otavio Rodolfo Piske <opi...@redhat.com> AuthorDate: Tue Jan 4 18:44:15 2022 +0100 CAMEL-17429: removed JDK 9 profiles on the camel-kubernetes component --- components/camel-kubernetes/pom.xml | 43 +++++++++++++++---------------------- 1 file changed, 17 insertions(+), 26 deletions(-) diff --git a/components/camel-kubernetes/pom.xml b/components/camel-kubernetes/pom.xml index df98647..53a8289 100644 --- a/components/camel-kubernetes/pom.xml +++ b/components/camel-kubernetes/pom.xml @@ -34,6 +34,23 @@ <properties> </properties> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>io.fabric8</groupId> + <artifactId>mockwebserver</artifactId> + <version>${mockwebserver-version}</version> + <scope>test</scope> + <exclusions> + <exclusion> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + </exclusion> + </exclusions> + </dependency> + </dependencies> + </dependencyManagement> + <dependencies> <dependency> <groupId>org.apache.camel</groupId> @@ -129,31 +146,5 @@ <version>${squareup-okhttp-version}</version> <scope>test</scope> </dependency> - </dependencies> - - <profiles> - <profile> - <id>jdk9s-build</id> - <activation> - <jdk>[9,)</jdk> - </activation> - <dependencyManagement> - <dependencies> - <dependency> - <groupId>io.fabric8</groupId> - <artifactId>mockwebserver</artifactId> - <version>${mockwebserver-version}</version> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>com.sun</groupId> - <artifactId>tools</artifactId> - </exclusion> - </exclusions> - </dependency> - </dependencies> - </dependencyManagement> - </profile> - </profiles> </project>