pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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>5.4.1</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. </dependencies>
  49. <build>
  50. <finalName>${project.artifactId}</finalName>
  51. <plugins>
  52. <plugin>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-maven-plugin</artifactId>
  55. <version>${spring-boot.version}</version>
  56. <executions>
  57. <execution>
  58. <goals>
  59. <goal>repackage</goal>
  60. </goals>
  61. </execution>
  62. </executions>
  63. </plugin>
  64. <plugin>
  65. <groupId>org.apache.maven.plugins</groupId>
  66. <artifactId>maven-jar-plugin</artifactId>
  67. <version>${maven-jar-plugin.version}</version>
  68. </plugin>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-war-plugin</artifactId>
  72. <version>${maven-war-plugin.version}</version>
  73. <configuration>
  74. <failOnMissingWebXml>false</failOnMissingWebXml>
  75. <warName>${project.artifactId}</warName>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>