2023-09-26 07:03:44 +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>
|
2024-04-02 07:23:53 +00:00
|
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
|
|
<module>spring-aop-advisor</module>
|
|
|
|
<module>spring-aop-pointcut</module>
|
2024-04-07 07:42:08 +00:00
|
|
|
<module>spring-aop-advice</module>
|
2024-04-08 03:40:12 +00:00
|
|
|
<module>spring-aop-advisorAdapter</module>
|
2024-04-09 07:36:20 +00:00
|
|
|
<module>spring-aop-targetSource</module>
|
2024-04-09 09:21:32 +00:00
|
|
|
<module>spring-aop-aopProxy</module>
|
2024-04-10 02:34:59 +00:00
|
|
|
<module>spring-aop-classFilter</module>
|
|
|
|
<module>spring-aop-methodMatcher</module>
|
2024-04-10 07:38:46 +00:00
|
|
|
<module>spring-aop-jdkProxy</module>
|
|
|
|
<module>spring-aop-cglibProxy</module>
|
2024-04-11 02:30:37 +00:00
|
|
|
<module>spring-aop-annotation-aspect</module>
|
|
|
|
<module>spring-aop-annotation-pointcut</module>
|
|
|
|
<module>spring-aop-annotation-around</module>
|
|
|
|
<module>spring-aop-annotation-before</module>
|
|
|
|
<module>spring-aop-annotation-after</module>
|
|
|
|
<module>spring-aop-annotation-afterReturning</module>
|
|
|
|
<module>spring-aop-annotation-afterThrowing</module>
|
|
|
|
<module>spring-aop-annotation-declareParents</module>
|
|
|
|
<module>spring-aop-annotation-enableAspectJAutoProxy</module>
|
|
|
|
<module>spring-aop-annotation-enableLoadTimeWeaving</module>
|
|
|
|
<module>spring-aop-advice-methodInterceptor</module>
|
2024-04-11 02:57:44 +00:00
|
|
|
<module>spring-aop-advice-methodBeforeAdvice</module>
|
2024-04-02 07:23:53 +00:00
|
|
|
</modules>
|
2023-09-26 07:03:44 +00:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2023-10-23 08:35:04 +00:00
|
|
|
<artifactId>spring-aop</artifactId>
|
2023-09-26 07:03:44 +00:00
|
|
|
|
|
|
|
</project>
|