pom.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. <properties>
  15. <thumbnailator.version>0.4.2</thumbnailator.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.apache.httpcomponents</groupId>
  20. <artifactId>httpclient</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.cloud</groupId>
  24. <artifactId>spring-cloud-starter-openfeign</artifactId>
  25. <scope>provided</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.thymeleaf</groupId>
  29. <artifactId>thymeleaf-spring5</artifactId>
  30. </dependency>
  31. <!--<dependency>-->
  32. <!--<groupId>com.tofly</groupId>-->
  33. <!--<artifactId>common-ftp</artifactId>-->
  34. <!--<version>1.0.0</version>-->
  35. <!--</dependency>-->
  36. <dependency>
  37. <groupId>net.coobird</groupId>
  38. <artifactId>thumbnailator</artifactId>
  39. <version>${thumbnailator.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.tofly</groupId>
  43. <artifactId>common-redis</artifactId>
  44. <version>1.0.0</version>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-maven-plugin</artifactId>
  52. <executions>
  53. <execution>
  54. <goals>
  55. <goal>repackage</goal>
  56. </goals>
  57. </execution>
  58. </executions>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>