Skip to content

Commit

Permalink
Move Trusty Service docker image name to properties file.
Browse files Browse the repository at this point in the history
  • Loading branch information
manstis committed Jan 11, 2022
1 parent e83dbb0 commit 5d5294e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
11 changes: 11 additions & 0 deletions quarkus/addons/tracing-decision/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
</parent>
<artifactId>kogito-addons-quarkus-tracing-decision-deployment</artifactId>
<name>Kogito Add-On Tracing Decision - Deployment</name>

<properties>
<version.kogito.trusty.postgresql.image>1.15.0</version.kogito.trusty.postgresql.image>
</properties>

<dependencies>
<dependency>
<groupId>org.kie.kogito</groupId>
Expand Down Expand Up @@ -50,6 +55,12 @@
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class KogitoDevServicesBuildTimeConfig {
/**
* The TrustyService image to use.
*/
@ConfigItem(defaultValue = "quay.io/kiegroup/kogito-trusty-postgresql:1.14.0")
@ConfigItem
public String imageName;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
quarkus.kogito.dev-services-trusty.image-name=quay.io/kiegroup/kogito-trusty-postgresql:${version.kogito.trusty.postgresql.image}

0 comments on commit 5d5294e

Please sign in to comment.