This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch CAMEL-22086 in repository https://gitbox.apache.org/repos/asf/camel.git
commit 305694a8f8713aed51c80da839e50624c36e0605 Author: Sebastian Steinfeld <[email protected]> AuthorDate: Mon Sep 22 17:09:43 2025 +0200 CAMEL-22086 - adjust dependencies --- components/camel-milo/pom.xml | 58 ++++++++++++++++++------- components/camel-milo/src/test/resources/run.sh | 17 ++++++++ 2 files changed, 60 insertions(+), 15 deletions(-) diff --git a/components/camel-milo/pom.xml b/components/camel-milo/pom.xml index 29efdb534b80..3a417a70ca14 100644 --- a/components/camel-milo/pom.xml +++ b/components/camel-milo/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache.camel</groupId> <artifactId>components</artifactId> - <version>4.0.0-SNAPSHOT</version> + <version>4.15.0-SNAPSHOT</version> </parent> <artifactId>camel-milo</artifactId> @@ -32,6 +32,8 @@ <description>Camel OPC UA support</description> <properties> + <version.milo>1.0.5</version.milo> + <version.guava>33.4.8-jre</version.guava> </properties> <dependencies> @@ -40,36 +42,62 @@ <artifactId>camel-support</artifactId> </dependency> +<!-- <dependency>--> +<!-- <groupId>org.eclipse.milo</groupId>--> +<!-- <artifactId>sdk-server</artifactId>--> +<!-- <version>${milo-version}</version>--> +<!-- </dependency>--> <dependency> <groupId>org.eclipse.milo</groupId> - <artifactId>sdk-server</artifactId> - <version>${milo-version}</version> + <artifactId>milo-sdk-server</artifactId> + <version>${version.milo}</version> </dependency> +<!-- <dependency>--> +<!-- <groupId>org.eclipse.milo</groupId>--> +<!-- <artifactId>sdk-client</artifactId>--> +<!-- <version>${milo-version}</version>--> +<!-- </dependency>--> <dependency> <groupId>org.eclipse.milo</groupId> - <artifactId>sdk-client</artifactId> - <version>${milo-version}</version> + <artifactId>milo-sdk-client</artifactId> + <version>${version.milo}</version> </dependency> +<!-- <dependency>--> +<!-- <groupId>org.eclipse.milo</groupId>--> +<!-- <artifactId>stack-core</artifactId>--> +<!-- <version>${milo-version}</version>--> +<!-- </dependency>--> <dependency> <groupId>org.eclipse.milo</groupId> - <artifactId>stack-core</artifactId> - <version>${milo-version}</version> + <artifactId>milo-stack-core</artifactId> + <version>${version.milo}</version> </dependency> +<!-- <dependency>--> +<!-- <groupId>org.eclipse.milo</groupId>--> +<!-- <artifactId>dictionary-manager</artifactId>--> +<!-- <version>${milo-version}</version>--> +<!-- </dependency>--> <dependency> <groupId>org.eclipse.milo</groupId> - <artifactId>dictionary-manager</artifactId> - <version>${milo-version}</version> + <artifactId>milo-dtd-manager</artifactId> + <version>${version.milo}</version> </dependency> +<!-- <dependency>--> +<!-- <groupId>com.google.guava</groupId>--> +<!-- <artifactId>guava</artifactId>--> +<!-- <version>${milo-guava-version}</version>--> +<!-- </dependency>--> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> - <version>${milo-guava-version}</version> + <version>${version.guava}</version> </dependency> + <!-- testing --> <dependency> <groupId>org.apache.camel</groupId> @@ -81,11 +109,11 @@ <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-slf4j-impl</artifactId> - <scope>test</scope> - </dependency> +<!-- <dependency>--> +<!-- <groupId>org.apache.logging.log4j</groupId>--> +<!-- <artifactId>log4j-slf4j-impl</artifactId>--> +<!-- <scope>test</scope>--> +<!-- </dependency>--> </dependencies> </project> diff --git a/components/camel-milo/src/test/resources/run.sh b/components/camel-milo/src/test/resources/run.sh index a6d1620288fa..24d0b14293a4 100755 --- a/components/camel-milo/src/test/resources/run.sh +++ b/components/camel-milo/src/test/resources/run.sh @@ -1,3 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + # script which prepares all needed certificates and keystore # properties of certificates has to be confirmed # password to be filled in the last step has to be 'test'
