海外活动管理项目后端项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.8 KiB

1 month ago
1 month ago
1 month ago
1 month ago
  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.lottery</groupId>
  8. <artifactId>lottery-system</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>lottery-service</artifactId>
  12. <properties>
  13. <maven.compiler.source>11</maven.compiler.source>
  14. <maven.compiler.target>11</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.lottery</groupId>
  20. <artifactId>lottery-pojo</artifactId>
  21. <version>1.0-SNAPSHOT</version>
  22. <scope>compile</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.lottery</groupId>
  26. <artifactId>lottery-common</artifactId>
  27. <version>1.0-SNAPSHOT</version>
  28. </dependency>
  29. <!-- <dependency>-->
  30. <!-- <groupId>org.apache.poi</groupId>-->
  31. <!-- <artifactId>poi</artifactId>-->
  32. <!-- <version>5.2.3</version>-->
  33. <!-- </dependency>-->
  34. <!-- <dependency>-->
  35. <!-- <groupId>org.apache.poi</groupId>-->
  36. <!-- <artifactId>poi-ooxml</artifactId>-->
  37. <!-- <version>5.2.3</version>-->
  38. <!-- </dependency>-->
  39. <dependency>
  40. <groupId>com.alibaba</groupId>
  41. <artifactId>easyexcel</artifactId>
  42. <version>3.1.3</version> <!-- 建议使用最新版本 -->
  43. </dependency>
  44. </dependencies>
  45. </project>