This is an automated email from the ASF dual-hosted git repository. aldettinger pushed a commit to branch camel-master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/camel-master by this push: new 30882d4 Added the joni optional dependency in order fix the native build 30882d4 is described below commit 30882d4a4b76f2976f4db30bcc9a6295f6a2c5c6 Author: aldettinger <aldettin...@gmail.com> AuthorDate: Wed Oct 28 18:15:35 2020 +0100 Added the joni optional dependency in order fix the native build --- extensions/json-validator/runtime/pom.xml | 4 ++++ pom.xml | 1 + poms/bom/pom.xml | 5 +++++ 3 files changed, 10 insertions(+) diff --git a/extensions/json-validator/runtime/pom.xml b/extensions/json-validator/runtime/pom.xml index 92b7aa4..eea47e9 100644 --- a/extensions/json-validator/runtime/pom.xml +++ b/extensions/json-validator/runtime/pom.xml @@ -56,6 +56,10 @@ <groupId>org.apache.camel</groupId> <artifactId>camel-json-validator</artifactId> </dependency> + <dependency> + <groupId>org.jruby.joni</groupId> + <artifactId>joni</artifactId> + </dependency> </dependencies> <build> diff --git a/pom.xml b/pom.xml index 93f1906..75f2877 100644 --- a/pom.xml +++ b/pom.xml @@ -72,6 +72,7 @@ <jackson-asl.version>1.9.13</jackson-asl.version><!-- Mess in the transitive dependencies of spark and hbase-testing-util --> <java.xml.ws.version>2.3.1</java.xml.ws.version> <jcodings.version>1.0.55</jcodings.version><!-- used by hbase --> + <joni.version>2.1.31</joni.version><!-- used by json-validator --> <jaxen.version>1.2.0</jaxen.version> <javassist.version>3.22.0-CR2</javassist.version><!-- debezium --> <jersey-sun.version>1.19.4</jersey-sun.version><!-- Spark --> diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml index ec53030..5065b8a 100644 --- a/poms/bom/pom.xml +++ b/poms/bom/pom.xml @@ -5592,6 +5592,11 @@ <version>${jcodings.version}</version> </dependency> <dependency> + <groupId>org.jruby.joni</groupId> + <artifactId>joni</artifactId> + <version>${joni.version}</version> + </dependency> + <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> <version>${spring.version}</version>