Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Post Camel 3.2.0 upgrade fixes #1063

Merged
merged 16 commits into from
Apr 9, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* 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.
*/
package org.apache.camel.quarkus.component.avro;

import io.quarkus.runtime.RuntimeValue;
Expand Down
2 changes: 1 addition & 1 deletion extensions-jvm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<module>aws2-translate</module>
<module>cassandraql</module>
<module>couchbase</module>
<module>debezium-mongodb</module>
<!--module>debezium-mongodb</module-->
lburgazzoli marked this conversation as resolved.
Show resolved Hide resolved
<module>debezium-mysql</module>
<module>debezium-postgres</module>
<module>debezium-sqlserver</module>
Expand Down
3 changes: 1 addition & 2 deletions extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@
<module>mail</module>
<module>microprofile-health</module>
<module>microprofile-metrics</module>
<!-- Disable MongoDB until quarkus uses mongbd 4.x -->
<!-- <module>mongodb</module>-->
<!-- <module>mongodb</module>-->
lburgazzoli marked this conversation as resolved.
Show resolved Hide resolved
<module>mustache</module>
<module>netty</module>
<module>netty-http</module>
Expand Down
3 changes: 1 addition & 2 deletions integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,7 @@
<module>mail</module>
<module>messaging</module>
<module>microprofile</module>
<!-- Disable MongoDB until quarkus uses mongbd 4.x -->
<!-- <module>mongodb</module>-->
<!-- <module>mongodb</module>-->
<module>mustache</module>
<module>netty</module>
<module>olingo4</module>
Expand Down
10 changes: 5 additions & 5 deletions poms/bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2069,16 +2069,16 @@
<artifactId>spring-tx</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>${snakeyaml.version}</version>
</dependency>
<dependency>
<groupId>org.threeten</groupId>
<artifactId>threetenbp</artifactId>
<version>1.4.0</version>
lburgazzoli marked this conversation as resolved.
Show resolved Hide resolved
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>${snakeyaml.version}</version>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>annotations</artifactId>
Expand Down