pom.xml 3.3 KB

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