pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. <groupId>com.tofly</groupId>
  7. <artifactId>yswz-admin</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <packaging>jar</packaging>
  12. <artifactId>base-service</artifactId>
  13. <dependencies>
  14. <!-- xxl-job -->
  15. <dependency>
  16. <groupId>com.xuxueli</groupId>
  17. <artifactId>xxl-job-core</artifactId>
  18. <version>2.2.0</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.tofly</groupId>
  22. <artifactId>base-api</artifactId>
  23. <version>1.0.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.apache.httpcomponents</groupId>
  27. <artifactId>httpclient</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.thymeleaf</groupId>
  31. <artifactId>thymeleaf-spring5</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.tofly</groupId>
  35. <artifactId>common-ftp</artifactId>
  36. <version>1.0.0</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.tofly</groupId>
  40. <artifactId>common-redis</artifactId>
  41. <version>1.0.0</version>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-maven-plugin</artifactId>
  49. <executions>
  50. <execution>
  51. <goals>
  52. <goal>repackage</goal>
  53. </goals>
  54. </execution>
  55. </executions>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>