Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into kie-issues-1599
Browse files Browse the repository at this point in the history
  • Loading branch information
ljmotta committed Dec 12, 2024
2 parents f4ea91a + 58815be commit 068b1c5
Show file tree
Hide file tree
Showing 11 changed files with 58 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +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.
#

quarkus.kafka.devservices.image-name=${container.image.kafka}
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,11 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<container.image.kafka>${container.image.kafka}</container.image.kafka>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@
<systemPropertyVariables>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
<container.image.kafka>${container.image.kafka}</container.image.kafka>
</systemPropertyVariables>
</configuration>
<executions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ quarkus.kogito.devservices.enabled=false

kie.flyway.enabled=true
quarkus.datasource.db-kind=postgresql

quarkus.kafka.devservices.image-name=${container.image.kafka}
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@
<systemPropertyVariables>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
<container.image.kafka>${container.image.kafka}</container.image.kafka>
</systemPropertyVariables>
</configuration>
<executions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@
quarkus.http.test-port=0

# Temporary fix for test to pass due to issue in Quarkus classloading resolver
quarkus.class-loading.parent-first-artifacts=org.testcontainers:testcontainers
quarkus.class-loading.parent-first-artifacts=org.testcontainers:testcontainers

quarkus.kafka.devservices.image-name=${container.image.kafka}
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@
<systemPropertyVariables>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
<container.image.kafka>${container.image.kafka}</container.image.kafka>
</systemPropertyVariables>
</configuration>
<executions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,6 @@
quarkus.http.test-port=0

# Temporary fix for test to pass due to issue in Quarkus classloading resolver
quarkus.class-loading.parent-first-artifacts=org.testcontainers:testcontainers
quarkus.class-loading.parent-first-artifacts=org.testcontainers:testcontainers

quarkus.kafka.devservices.image-name=${container.image.kafka}
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
<!-- Reproducible builds -->
<project.build.outputTimestamp>2024-01-16T00:00:00Z</project.build.outputTimestamp>
<version.maven.artifact.plugin>3.4.1</version.maven.artifact.plugin>
<container.image.kafka>redpandadata/redpanda:v24.3.1</container.image.kafka>
</properties>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@
<systemPropertyVariables>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
<container.image.kafka>${container.image.kafka}</container.image.kafka>
</systemPropertyVariables>
</configuration>
<executions>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +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.
#

quarkus.kafka.devservices.image-name=${container.image.kafka}

0 comments on commit 068b1c5

Please sign in to comment.