pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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>tofly-webParent</artifactId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>base-service</artifactId>
  12. <packaging>jar</packaging>
  13. <version>1.0-SNAPSHOT</version>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.apache.httpcomponents</groupId>
  17. <artifactId>httpclient</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.thymeleaf</groupId>
  21. <artifactId>thymeleaf-spring5</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.tofly</groupId>
  25. <artifactId>common-ftp</artifactId>
  26. <version>1.0.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.tofly</groupId>
  30. <artifactId>common-redis</artifactId>
  31. <version>1.0.0</version>
  32. </dependency>
  33. </dependencies>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-maven-plugin</artifactId>
  39. <executions>
  40. <execution>
  41. <goals>
  42. <goal>repackage</goal>
  43. </goals>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. </plugins>
  48. </build>
  49. </project>