liquibase/pom.xml

76 lines
2.7 KiB
XML
Raw Permalink Normal View History

2021-03-07 14:02:52 +03:00
<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
2022-04-24 01:30:18 +03:00
<version>2.6.7</version>
2021-03-07 14:02:52 +03:00
<relativePath/> <!-- lookup parent from repository -->
</parent>
2022-04-24 01:30:18 +03:00
<groupId>dev.struchkov.example</groupId>
2021-03-07 14:02:52 +03:00
<artifactId>liquibase</artifactId>
<version>0.0.1-SNAPSHOT</version>
2022-04-24 01:30:18 +03:00
<name>Liquibase Examples</name>
<description>Demo project using liquibase</description>
2021-03-07 14:02:52 +03:00
<properties>
2022-04-24 01:30:18 +03:00
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2021-03-07 14:02:52 +03:00
</properties>
2022-04-24 01:30:18 +03:00
2021-03-07 14:02:52 +03:00
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
2021-03-07 15:10:50 +03:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
2021-03-07 14:02:52 +03:00
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>