spring-reading./spring-beans/pom.xml

23 lines
874 B
XML
Raw Normal View History

2023-11-01 09:57:45 +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-beans</artifactId>
<packaging>pom</packaging>
2023-11-04 02:49:13 +00:00
2023-11-01 09:57:45 +00:00
<modules>
<module>spring-bean-beanDefinition</module>
2023-11-04 02:49:13 +00:00
<module>spring-bean-beanDefinitionHolder</module>
2023-11-04 03:50:41 +00:00
<module>spring-bean-beanDefinitionRegistry</module>
2023-11-04 09:04:05 +00:00
<module>spring-bean-xmlBeanDefinitionReader</module>
<module>spring-bean-propertiesBeanDefinitionReader</module>
2023-11-01 09:57:45 +00:00
</modules>
</project>