spring-reading./spring-dataops/pom.xml

24 lines
958 B
XML
Raw Normal View History

2023-12-04 08:46:41 +00: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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>spring-reading</artifactId>
<groupId>com.xcs.spring</groupId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-dataops</artifactId>
<packaging>pom</packaging>
<modules>
<module>spring-dataops-validator</module>
<module>spring-dataops-beanWrapper</module>
<module>spring-dataops-propertyEditor</module>
2023-12-07 10:00:46 +00:00
<module>spring-dataops-converter</module>
2023-12-07 14:34:16 +00:00
<module>spring-dataops-genericConverter</module>
2023-12-07 15:39:05 +00:00
<module>spring-dataops-converterFactory</module>
2023-12-08 03:41:13 +00:00
<module>spring-dataops-conditionalConverter</module>
2023-12-04 08:46:41 +00:00
</modules>
</project>