pom.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. <parent>
  6. <artifactId>tf-lysw</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>flow_project</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.tofly</groupId>
  19. <artifactId>lysw-admin-api</artifactId>
  20. <version>1.0.0</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.haiqiu.tools</groupId>
  24. <artifactId>hq-all-tools</artifactId>
  25. <version>1.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.xuxueli</groupId>
  29. <artifactId>xxl-job-core</artifactId>
  30. <version>2.3.1</version>
  31. <scope>compile</scope>
  32. </dependency>
  33. <!-- easyPoi -->
  34. <dependency>
  35. <groupId>cn.afterturn</groupId>
  36. <artifactId>easypoi-spring-boot-starter</artifactId>
  37. <version>4.2.0</version>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <plugin>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-maven-plugin</artifactId>
  45. <executions>
  46. <execution>
  47. <goals>
  48. <goal>repackage</goal>
  49. </goals>
  50. </execution>
  51. </executions>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>