pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <dependency>
  47. <groupId>com.github.qcloudsms</groupId>
  48. <artifactId>qcloudsms</artifactId>
  49. <version>1.0.6</version>
  50. </dependency>
  51. </dependencies>
  52. <build>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-maven-plugin</artifactId>
  57. <executions>
  58. <execution>
  59. <goals>
  60. <goal>repackage</goal>
  61. </goals>
  62. </execution>
  63. </executions>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>