pom.xml 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.yonge.toolset</groupId>
  8. <artifactId>toolset</artifactId>
  9. <version>1.0</version>
  10. </parent>
  11. <groupId>com.yonge.toolset</groupId>
  12. <artifactId>thirdparty-component</artifactId>
  13. <version>1.0</version>
  14. <name>thirdparty-component</name>
  15. <url>http://maven.apache.org</url>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.yonge.toolset</groupId>
  22. <artifactId>toolset-base</artifactId>
  23. <version>1.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.yonge.toolset</groupId>
  27. <artifactId>utils</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.aliyun.oss</groupId>
  31. <artifactId>aliyun-sdk-oss</artifactId>
  32. <version>2.8.3</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.commons</groupId>
  36. <artifactId>commons-email</artifactId>
  37. <version>1.5</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-starter-openfeign</artifactId>
  42. </dependency>
  43. <!-- https://mvnrepository.com/artifact/io.github.openfeign.form/feign-form-spring -->
  44. <dependency>
  45. <groupId>io.github.openfeign.form</groupId>
  46. <artifactId>feign-form-spring</artifactId>
  47. </dependency>
  48. <!-- https://mvnrepository.com/artifact/io.github.openfeign.form/feign-form-spring -->
  49. <dependency>
  50. <groupId>io.github.openfeign.form</groupId>
  51. <artifactId>feign-form-spring</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.ksyun</groupId>
  55. <artifactId>ks3-kss-java-sdk</artifactId>
  56. <version>0.8.14</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.timevale</groupId>
  60. <artifactId>tech-sdk</artifactId>
  61. <version>2.1.20</version>
  62. <scope>system</scope>
  63. <systemPath>${project.basedir}/libs/tech-sdk-2.1.20.jar</systemPath>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.timevale</groupId>
  67. <artifactId>smUtil</artifactId>
  68. <version>1.0</version>
  69. <scope>system</scope>
  70. <systemPath>${project.basedir}/libs/smUtil-1.0.jar</systemPath>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.timevale</groupId>
  74. <artifactId>tgtext</artifactId>
  75. <version>3.2.14</version>
  76. <scope>system</scope>
  77. <systemPath>${project.basedir}/libs/tgtext-3.2.14.jar</systemPath>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.timevale</groupId>
  81. <artifactId>utils</artifactId>
  82. <version>3.0.6</version>
  83. <scope>system</scope>
  84. <systemPath>${project.basedir}/libs/utils-3.0.6.jar</systemPath>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.google.code.gson</groupId>
  88. <artifactId>gson</artifactId>
  89. </dependency>
  90. </dependencies>
  91. <build>
  92. <plugins>
  93. <plugin>
  94. <groupId>org.apache.maven.plugins</groupId>
  95. <artifactId>maven-compiler-plugin</artifactId>
  96. <configuration>
  97. <source>1.8</source>
  98. <target>1.8</target>
  99. <encoding>UTF-8</encoding>
  100. <compilerArguments>
  101. <extdirs>${project.basedir}/libs</extdirs>
  102. </compilerArguments>
  103. </configuration>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. </project>