pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <packaging>jar</packaging>
  7. <parent>
  8. <groupId>cn.hutool</groupId>
  9. <artifactId>hutool-parent</artifactId>
  10. <version>5.5.2</version>
  11. </parent>
  12. <artifactId>hutool-aop</artifactId>
  13. <name>${project.artifactId}</name>
  14. <description>Hutool 动态代理(AOP)</description>
  15. <properties>
  16. <!-- versions -->
  17. <cglib.version>3.3.0</cglib.version>
  18. <spring.version>5.3.1</spring.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>cn.hutool</groupId>
  23. <artifactId>hutool-core</artifactId>
  24. <version>${project.parent.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>cglib</groupId>
  28. <artifactId>cglib</artifactId>
  29. <version>${cglib.version}</version>
  30. <scope>compile</scope>
  31. <optional>true</optional>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework</groupId>
  35. <artifactId>spring-core</artifactId>
  36. <version>${spring.version}</version>
  37. <scope>compile</scope>
  38. <optional>true</optional>
  39. </dependency>
  40. </dependencies>
  41. </project>