pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. <fastjson.verion>1.2.83</fastjson.verion>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.apache.httpcomponents</groupId>
  21. <artifactId>httpclient</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-starter-openfeign</artifactId>
  26. <scope>provided</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.thymeleaf</groupId>
  30. <artifactId>thymeleaf-spring5</artifactId>
  31. </dependency>
  32. <!--<dependency>-->
  33. <!--<groupId>com.tofly</groupId>-->
  34. <!--<artifactId>common-ftp</artifactId>-->
  35. <!--<version>1.0.0</version>-->
  36. <!--</dependency>-->
  37. <dependency>
  38. <groupId>net.coobird</groupId>
  39. <artifactId>thumbnailator</artifactId>
  40. <version>${thumbnailator.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.tofly</groupId>
  44. <artifactId>common-redis</artifactId>
  45. <version>1.0.0</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.github.qcloudsms</groupId>
  49. <artifactId>qcloudsms</artifactId>
  50. <version>1.0.6</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>junit</groupId>
  54. <artifactId>junit</artifactId>
  55. <version>4.13.2</version>
  56. <scope>test</scope>
  57. </dependency>
  58. </dependencies>
  59. <build>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-maven-plugin</artifactId>
  64. <executions>
  65. <execution>
  66. <goals>
  67. <goal>repackage</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </project>