Skip to content

Commit

Permalink
Publish dev services container images: Fixes #2022
Browse files Browse the repository at this point in the history
  • Loading branch information
johnaohara committed Sep 24, 2024
1 parent a2a9709 commit 4396b55
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
22 changes: 22 additions & 0 deletions infra/horreum-infra-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,26 @@


</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>write-project-properties</goal>
</goals>
<configuration>
<outputFile>
${project.build.outputDirectory}/META-INF/horreum.dev.properties
</outputFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
4 changes: 4 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,13 @@

<module.skipCopyDependencies>false</module.skipCopyDependencies>

<!-- dev services configuration -->
<keycloak.version>25.0.2</keycloak.version>
<dev.images.postgres>postgres:16</dev.images.postgres>
<dev.images.keycloak>quay.io/keycloak/keycloak:${keycloak.version}</dev.images.keycloak>
<dev.images.horreum>quay.io/hyperfoil/horreum:${project.version}</dev.images.horreum>
<!-- this is copied from the quarkus dev services impl -->
<dev.images.amq>quay.io/artemiscloud/activemq-artemis-broker:1.0.25</dev.images.amq>

<horreum.version>${project.version}</horreum.version>
<major-version>0.16</major-version>
Expand Down

0 comments on commit 4396b55

Please sign in to comment.