pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.sf</groupId>
  5. <artifactId>spring-demo</artifactId>
  6. <version>1.0-SNAPSHOT</version>
  7. <packaging>jar</packaging>
  8. <!-- /Users/Qing/.m2/repository/com/sf/spring-demo/1.0-SNAPSHOT/spring-demo-1.0-SNAPSHOT.jar-->
  9. <name>spring-demo</name>
  10. <url>http://maven.apache.org</url>
  11. <properties>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.springframework</groupId>
  17. <artifactId>spring-context</artifactId>
  18. <version>6.1.5</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-test</artifactId>
  23. <version>6.1.5</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>jakarta.annotation</groupId>
  27. <artifactId>jakarta.annotation-api</artifactId>
  28. <version>3.0.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>cglib</groupId>
  32. <artifactId>cglib</artifactId>
  33. <version>3.3.0</version>
  34. </dependency>
  35. <!--aspectj支持-->
  36. <dependency>
  37. <groupId>org.aspectj</groupId>
  38. <artifactId>aspectjrt</artifactId>
  39. <version>1.9.22</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.aspectj</groupId>
  43. <artifactId>aspectjweaver</artifactId>
  44. <version>1.9.22</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.junit.jupiter</groupId>
  48. <artifactId>junit-jupiter</artifactId>
  49. <version>5.10.2</version>
  50. </dependency>
  51. <!-- /Users/Qing/.m2/repository/org/junit/jupiter/junit-jupiter/5.10.2/junit-jupiter-5.10.2.jar -->
  52. </dependencies>
  53. <build>
  54. <plugins>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-compiler-plugin</artifactId>
  58. <version>3.11.0</version>
  59. <configuration>
  60. <source>17</source>
  61. <target>17</target>
  62. </configuration>
  63. </plugin>
  64. </plugins>
  65. </build>
  66. </project>