Skip to content

Commit

Permalink
reproducer
Browse files Browse the repository at this point in the history
  • Loading branch information
michalvavrik committed Sep 22, 2024
1 parent 57b4565 commit ed41050
Showing 1 changed file with 36 additions and 38 deletions.
74 changes: 36 additions & 38 deletions narayana-transaction-logs-quickstart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,11 @@
<version>1.0.0-SNAPSHOT</version>
<properties>
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
<quarkus.platform.version>999-SNAPSHOT</quarkus.platform.version>
<compiler-plugin.version>3.8.1</compiler-plugin.version>
<surefire-plugin.version>3.0.0-M7</surefire-plugin.version>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.parameters>true</maven.compiler.parameters>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<docker-plugin.version>0.43.2</docker-plugin.version>
</properties>
Expand Down Expand Up @@ -85,41 +83,41 @@
</systemPropertyVariables>
</configuration>
</plugin>
<plugin>
<!-- Automatically start PostgreSQL for integration testing - requires Docker -->
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<version>${docker-plugin.version}</version>
<configuration>
<skip>${skipTests}</skip>
<images>
<image>
<external>
<type>compose</type>
<basedir>.</basedir>
<composeFile>docker-compose.yml</composeFile>
</external>
</image>
</images>
</configuration>
<executions>
<execution>
<id>docker-start</id>
<phase>test-compile</phase>
<goals>
<goal>stop</goal>
<goal>start</goal>
</goals>
</execution>
<execution>
<id>docker-stop</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- <plugin>-->
<!-- &lt;!&ndash; Automatically start PostgreSQL for integration testing - requires Docker &ndash;&gt;-->
<!-- <groupId>io.fabric8</groupId>-->
<!-- <artifactId>docker-maven-plugin</artifactId>-->
<!-- <version>${docker-plugin.version}</version>-->
<!-- <configuration>-->
<!-- <skip>${skipTests}</skip>-->
<!-- <images>-->
<!-- <image>-->
<!-- <external>-->
<!-- <type>compose</type>-->
<!-- <basedir>.</basedir>-->
<!-- <composeFile>docker-compose.yml</composeFile>-->
<!-- </external>-->
<!-- </image>-->
<!-- </images>-->
<!-- </configuration>-->
<!-- <executions>-->
<!-- <execution>-->
<!-- <id>docker-start</id>-->
<!-- <phase>test-compile</phase>-->
<!-- <goals>-->
<!-- <goal>stop</goal>-->
<!-- <goal>start</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- <execution>-->
<!-- <id>docker-stop</id>-->
<!-- <phase>post-integration-test</phase>-->
<!-- <goals>-->
<!-- <goal>stop</goal>-->
<!-- </goals>-->
<!-- </execution>-->
<!-- </executions>-->
<!-- </plugin>-->
</plugins>
</build>
<profiles>
Expand Down

0 comments on commit ed41050

Please sign in to comment.