pom.xml 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. <artifactId>iamberry-parent</artifactId>
  7. <groupId>com.iamberry</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>watero-rst-service</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.iamberry</groupId>
  15. <artifactId>watero-rst-interface</artifactId>
  16. <version>1.0.0</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.iamberry</groupId>
  20. <artifactId>watero-common-tool</artifactId>
  21. <version>1.0.0</version>
  22. </dependency>
  23. <!-- <dependency>-->
  24. <!-- <groupId>com.jd</groupId>-->
  25. <!-- <artifactId>open-api-sdk</artifactId>-->
  26. <!-- <version>2.0</version>-->
  27. <!-- </dependency>-->
  28. <dependency>
  29. <groupId>com.jd</groupId>
  30. <artifactId>open-api-sdk</artifactId>
  31. <version>2.0-2023</version>
  32. </dependency>
  33. <!-- 抖音抖店sdk -->
  34. <!-- http://maven.iamberry.com/#view-repositories;thirdparty~browsestorage -->
  35. <dependency>
  36. <groupId>com.jinritemai</groupId>
  37. <artifactId>sdk-java</artifactId>
  38. <version>1.1.0-20230621123120</version>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <resources>
  43. <resource>
  44. <directory>src/main/java</directory>
  45. <includes>
  46. <include>**/*.properties</include>
  47. <include>**/*.xml</include>
  48. </includes>
  49. <filtering>false</filtering>
  50. </resource>
  51. </resources>
  52. <finalName>watero-rst-service</finalName>
  53. <plugins>
  54. <plugin>
  55. <groupId>org.apache.maven.plugins</groupId>
  56. <artifactId>maven-compiler-plugin</artifactId>
  57. <version>3.3</version>
  58. <configuration>
  59. <source>1.8</source>
  60. <target>1.8</target>
  61. </configuration>
  62. </plugin>
  63. </plugins>
  64. </build>
  65. </project>