Files
spring-data-examples/jdbc/howto/pom.xml
Jens Schauder c4d1ca270f Demonstrate Schema Generation in Spring Data Jdbc.
This provides the source examples for the upcoming blog post.

Closes #667
2023-08-24 12:48:04 -07:00

31 lines
1.1 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</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>org.springframework.data.examples</groupId>
<artifactId>spring-data-jdbc-examples</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Spring Data JDBC - How to Examples</name>
<description>Sample projects for Spring Data JDBC demonstrating various features and options.
It serves as a source code repository for a series of How To articles on the Spring Blog</description>
<url>https://projects.spring.io/spring-data-jdbc</url>
<inceptionYear>2021</inceptionYear>
<modules>
<module>bidirectionalexternal</module>
<module>bidirectionalinternal</module>
<module>caching</module>
<module>idgeneration</module>
<module>selectiveupdate</module>
<module>schema-generation</module>
</modules>
</project>