JAVA-4770 Fix Invalid Dependency in the quarkus-app Module

This commit is contained in:
mikr 2021-03-30 09:42:54 +02:00
parent 923df780df
commit 023fec286b
4 changed files with 8 additions and 5 deletions

View File

@ -531,7 +531,7 @@
<module>protobuffer</module>
<module>quarkus</module>
<!-- <module>quarkus-extension</module> --> <!-- Module broken, fixing in http://team.baeldung.com/browse/JAVA-4770 -->
<module>quarkus-extension</module>
<module>rabbitmq</module>
<!-- <module>raml</module> --> <!-- Not a maven project -->
@ -992,7 +992,7 @@
<module>protobuffer</module>
<module>quarkus</module>
<!-- <module>quarkus-extension</module> --> <!-- Module broken, fixing in http://team.baeldung.com/browse/JAVA-4770 -->
<module>quarkus-extension</module>
<module>rabbitmq</module>
<!-- <module>raml</module> --> <!-- Not a maven project -->

View File

@ -27,9 +27,10 @@
<dependencies>
<dependency>
<groupId>com.baeldung.quarkus.liquibase</groupId>
<artifactId>quarkus-liquibase-runtime</artifactId>
<artifactId>runtime</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-jdbc-h2</artifactId>

View File

@ -3,6 +3,7 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung.quarkus.liquibase</groupId>
<artifactId>deployment</artifactId>
<name>deployment</name>
@ -30,7 +31,7 @@
</dependency>
<dependency>
<groupId>com.baeldung.quarkus.liquibase</groupId>
<artifactId>quarkus-liquibase-runtime</artifactId>
<artifactId>runtime</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>

View File

@ -2,6 +2,7 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung.quarkus.liquibase</groupId>
<artifactId>runtime</artifactId>
<name>runtime</name>
@ -41,7 +42,7 @@
<goal>extension-descriptor</goal>
</goals>
<configuration>
<deployment>${project.groupId}:quarkus-liquibase-deployment:${project.version}
<deployment>${project.groupId}:deployment:${project.version}
</deployment>
</configuration>
</execution>