29 lines
1002 B
XML
29 lines
1002 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.aizuda</groupId>
|
|
<artifactId>easy-retry</artifactId>
|
|
<version>${revision}</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<artifactId>easy-retry-datasource</artifactId>
|
|
<name>easy-retry-datasource</name>
|
|
<description>easy-retry-datasource</description>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<java.version>17</java.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>easy-retry-mariadb-datasource</module>
|
|
<module>easy-retry-mysql-datasource</module>
|
|
<module>easy-retry-postgres-datasource</module>
|
|
<module>easy-retry-datasource-template</module>
|
|
</modules>
|
|
|
|
</project>
|