34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
<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>
|
|
|
|
<artifactId>spring-data-jdbc-how-to-schema-generation</artifactId>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.data.examples</groupId>
|
|
<artifactId>spring-data-jdbc-how-to</artifactId>
|
|
<version>2.0.0.BUILD-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<name>Spring Data JDBC - How to do schema generation</name>
|
|
<description>Sample project for Spring Data JDBC demonstrating how it can be used to generate and update your
|
|
schema.
|
|
</description>
|
|
<url>https://projects.spring.io/spring-data-jdbc</url>
|
|
<inceptionYear>2023</inceptionYear>
|
|
|
|
<properties>
|
|
<spring-data-bom.version>2023.1.0-M2</spring-data-bom.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.liquibase</groupId>
|
|
<artifactId>liquibase-core</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|