2019-12-01 11:49:36 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-01-28 00:01:43 -05:00
|
|
|
<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">
|
2019-12-05 09:56:52 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-04-11 19:01:53 -04:00
|
|
|
<artifactId>runtime</artifactId>
|
|
|
|
<name>runtime</name>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-12-01 11:49:36 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.quarkus.liquibase</groupId>
|
2020-06-07 11:58:59 -04:00
|
|
|
<artifactId>quarkus-liquibase</artifactId>
|
2019-12-01 11:49:36 -05:00
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-core</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-agroal</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
<artifactId>liquibase-core</artifactId>
|
2020-01-28 00:01:43 -05:00
|
|
|
<version>${liquibase-core.version}</version>
|
2019-12-01 11:49:36 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-12-05 09:56:52 -05:00
|
|
|
|
2019-12-01 11:49:36 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-bootstrap-maven-plugin</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>extension-descriptor</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
2020-01-25 03:56:11 -05:00
|
|
|
<deployment>${project.groupId}:quarkus-liquibase-deployment:${project.version}
|
2019-12-01 11:49:36 -05:00
|
|
|
</deployment>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2020-01-27 15:05:31 -05:00
|
|
|
<version>${compiler.plugin.version}</version>
|
2019-12-01 11:49:36 -05:00
|
|
|
<configuration>
|
|
|
|
<annotationProcessorPaths>
|
|
|
|
<path>
|
|
|
|
<groupId>io.quarkus</groupId>
|
|
|
|
<artifactId>quarkus-extension-processor</artifactId>
|
|
|
|
<version>${quarkus.version}</version>
|
|
|
|
</path>
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2020-01-28 00:01:43 -05:00
|
|
|
<properties>
|
|
|
|
<liquibase-core.version>3.8.1</liquibase-core.version>
|
2020-01-27 15:05:31 -05:00
|
|
|
<compiler.plugin.version>3.8.1</compiler.plugin.version>
|
|
|
|
<liquibase.version>3.8.1</liquibase.version>
|
2020-01-28 00:01:43 -05:00
|
|
|
</properties>
|
|
|
|
|
2020-04-11 19:01:53 -04:00
|
|
|
</project>
|