You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pp...@apache.org on 2021/04/27 13:22:09 UTC

[camel-quarkus] 03/05: Workaround for #2514 quarkus.test.flat-class-path=true required to run Avro tests

This is an automated email from the ASF dual-hosted git repository.

ppalaga pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 32616fb65a1e40b316e01b97dcae3c7a51d9a888
Author: Peter Palaga <pp...@redhat.com>
AuthorDate: Mon Apr 26 14:02:47 2021 +0200

    Workaround for #2514 quarkus.test.flat-class-path=true required to run Avro tests
---
 .../src/main/resources/application.properties         | 19 +++++++++++++++++++
 .../avro/src/main/resources/application.properties    | 19 +++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/integration-tests/avro-rpc/src/main/resources/application.properties b/integration-tests/avro-rpc/src/main/resources/application.properties
new file mode 100644
index 0000000..0364c80
--- /dev/null
+++ b/integration-tests/avro-rpc/src/main/resources/application.properties
@@ -0,0 +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.
+## ---------------------------------------------------------------------------
+
+# Workaround for https://github.com/apache/camel-quarkus/issues/2514
+quarkus.test.flat-class-path=true
diff --git a/integration-tests/avro/src/main/resources/application.properties b/integration-tests/avro/src/main/resources/application.properties
new file mode 100644
index 0000000..a7e9ab0
--- /dev/null
+++ b/integration-tests/avro/src/main/resources/application.properties
@@ -0,0 +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.
+## ---------------------------------------------------------------------------
+
+# Workaround for https://github.com/apache/camel-quarkus/issues/2514
+quarkus.test.flat-class-path=true
\ No newline at end of file