pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.emoon</groupId>
  8. <artifactId>emoon-backend</artifactId>
  9. <version>${revision}</version>
  10. </parent>
  11. <artifactId>emoon-tongue</artifactId>
  12. <properties>
  13. <maven.compiler.source>21</maven.compiler.source>
  14. <maven.compiler.target>21</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.emoon</groupId>
  20. <artifactId>emoon-common-core</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.emoon</groupId>
  24. <artifactId>emoon-common-web</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.emoon</groupId>
  28. <artifactId>emoon-common-tenant</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.emoon</groupId>
  32. <artifactId>emoon-common-oss</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.emoon</groupId>
  36. <artifactId>emoon-common-mybatis</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.mysql</groupId>
  40. <artifactId>mysql-connector-j</artifactId>
  41. </dependency>
  42. <!-- MinIO 客户端依赖 -->
  43. <dependency>
  44. <groupId>io.minio</groupId>
  45. <artifactId>minio</artifactId>
  46. <version>8.5.7</version>
  47. </dependency>
  48. <!-- Apache HttpClient -->
  49. <dependency>
  50. <groupId>org.apache.httpcomponents</groupId>
  51. <artifactId>httpclient</artifactId>
  52. <version>4.5.14</version>
  53. </dependency>
  54. <!-- Thymeleaf 模板引擎 -->
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  58. </dependency>
  59. <!-- 单元测试 -->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-test</artifactId>
  63. <scope>test</scope>
  64. </dependency>
  65. <!-- 运行时需要(Spring AOP 会加载 org.aspectj.lang.annotation.Pointcut 等类) -->
  66. <dependency>
  67. <groupId>org.aspectj</groupId>
  68. <artifactId>aspectjweaver</artifactId>
  69. <version>1.9.24</version>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <!-- Spring Boot Maven 插件 -->
  75. <plugin>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-maven-plugin</artifactId>
  78. <version>3.2.0</version>
  79. <executions>
  80. <execution>
  81. <goals>
  82. <goal>repackage</goal>
  83. </goals>
  84. </execution>
  85. </executions>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>