pom.xml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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.kym</groupId>
  8. <artifactId>charge</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <groupId>org.kym</groupId>
  12. <artifactId>admin</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>com.kym</groupId>
  16. <artifactId>service</artifactId>
  17. <version>0.0.1-SNAPSHOT</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-test</artifactId>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-validation</artifactId>
  31. <version>3.1.1</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.poi</groupId>
  35. <artifactId>poi-ooxml</artifactId>
  36. <version>5.2.3</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.sun.mail</groupId>
  40. <artifactId>javax.mail</artifactId>
  41. <version>1.6.2</version>
  42. </dependency>
  43. <!--运营看板小程序-->
  44. <dependency>
  45. <groupId>com.github.binarywang</groupId>
  46. <artifactId>weixin-java-miniapp</artifactId>
  47. <version>4.5.0</version>
  48. </dependency>
  49. </dependencies>
  50. <properties>
  51. <maven.compiler.source>17</maven.compiler.source>
  52. <maven.compiler.target>17</maven.compiler.target>
  53. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  54. </properties>
  55. <build>
  56. <resources>
  57. <resource>
  58. <directory>src/main/resources</directory>
  59. <filtering>false</filtering>
  60. <includes>
  61. <include>**/*.*</include>
  62. </includes>
  63. </resource>
  64. </resources>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. </project>