22 lines
989 B
XML
22 lines
989 B
XML
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<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>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-data-jdbc-how-to-bidirectional-internal</artifactId>
|
|
|
|
<name>Spring Data JDBC - How to model aggregate internal bidirectional relationships</name>
|
|
<description>Sample project for Spring Data JDBC demonstrating how to model aggregate internal bidirectional relationships.
|
|
It serves as a source code repository for a How-To article on the Spring Blog</description>
|
|
<url>https://projects.spring.io/spring-data-jdbc</url>
|
|
<inceptionYear>2021</inceptionYear>
|
|
</project>
|