海外活动管理项目后端项目
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.

51 lines
1.8 KiB

1 month ago
1 month ago
1 month ago
1 month ago
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. <dependencies>
  13. <!-- Spring Boot 基础依赖 -->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. </dependency>
  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>com.alibaba</groupId>
  31. <artifactId>easyexcel</artifactId>
  32. <version>3.1.3</version> <!-- 建议使用最新版本 -->
  33. </dependency>
  34. </dependencies>
  35. <!-- 构建配置(修正位置) -->
  36. <build>
  37. <plugins>
  38. <plugin>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-maven-plugin</artifactId>
  41. <!-- 不需要指定版本,继承自父 POM -->
  42. <configuration>
  43. <mainClass>com.lottery.LotteryApplication</mainClass> <!-- 指定主类 -->
  44. </configuration>
  45. </plugin>
  46. </plugins>
  47. </build>
  48. </project>