2023-09-15 06:44:51 +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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<groupId>com.xcs.spring</groupId>
|
|
|
|
<artifactId>spring-reading</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-reading</name>
|
|
|
|
<description>spring-reading</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
|
|
<java.version>11</java.version>
|
|
|
|
<spring.version>5.3.10</spring.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<modules>
|
2023-09-15 07:31:00 +00:00
|
|
|
<module>spring-annotation-configuration</module>
|
|
|
|
<module>spring-annotation-bean</module>
|
|
|
|
<module>spring-annotation-import</module>
|
|
|
|
<module>spring-annotation-propertySource</module>
|
|
|
|
<module>spring-annotation-componentScan</module>
|
2023-09-15 06:44:51 +00:00
|
|
|
<module>spring-interface-beanFactoryPostProcessor</module>
|
|
|
|
<module>spring-interface-beanPostProcessor</module>
|
|
|
|
<module>spring-interface-environment</module>
|
|
|
|
<module>spring-interface-applicationListener</module>
|
|
|
|
<module>spring-interface-importSelector</module>
|
|
|
|
<module>spring-interface-importBeanDefinitionRegistrar</module>
|
|
|
|
<module>spring-interface-resource</module>
|
|
|
|
<module>spring-interface-embeddedValueResolver</module>
|
|
|
|
<module>spring-interface-factoryBean</module>
|
2023-09-15 07:31:00 +00:00
|
|
|
<module>spring-interface-beanDefinitionRegistryPostProcessor</module>
|
2023-09-18 08:05:40 +00:00
|
|
|
<module>spring-interface-instantiationAwareBeanPostProcessor</module>
|
|
|
|
<module>spring-interface-destructionAwareBeanPostProcessor</module>
|
2023-09-20 07:07:56 +00:00
|
|
|
<module>spring-interface-mergedBeanDefinitionPostProcessor</module>
|
2023-09-21 12:13:12 +00:00
|
|
|
<module>spring-interface-smartInstantiationAwareBeanPostProcessor</module>
|
2023-09-22 03:43:09 +00:00
|
|
|
<module>spring-interface-initializingBean</module>
|
2023-09-22 07:21:35 +00:00
|
|
|
<module>spring-interface-disposableBean</module>
|
2023-09-26 07:03:44 +00:00
|
|
|
<module>spring-core-ioc</module>
|
2023-09-27 03:16:43 +00:00
|
|
|
<module>spring-interface-smartInitializingSingleton</module>
|
2023-09-29 14:17:54 +00:00
|
|
|
<module>spring-aware-beanNameAware</module>
|
2023-09-29 15:47:08 +00:00
|
|
|
<module>spring-aware-beanFactoryAware</module>
|
2023-10-01 11:39:48 +00:00
|
|
|
<module>spring-aware-beanClassLoaderAware</module>
|
2023-10-01 13:59:41 +00:00
|
|
|
<module>spring-aware-applicationContextAware</module>
|
2023-10-02 06:36:16 +00:00
|
|
|
<module>spring-aware-applicationEventPublisherAware</module>
|
2023-10-02 07:20:14 +00:00
|
|
|
<module>spring-aware-environmentAware</module>
|
2023-10-02 07:56:52 +00:00
|
|
|
<module>spring-aware-resourceLoaderAware</module>
|
2023-10-03 07:20:45 +00:00
|
|
|
<module>spring-aware-embeddedValueResolverAware</module>
|
2023-10-03 09:04:16 +00:00
|
|
|
<module>spring-aware-messageSourceAware</module>
|
2023-10-03 13:54:58 +00:00
|
|
|
<module>spring-aware-applicationStartupAware</module>
|
2023-10-04 14:03:20 +00:00
|
|
|
<module>spring-aware-importAware</module>
|
2023-09-15 06:44:51 +00:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-aspects</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-tx</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|