pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.starbuds.server</groupId>
  7. <artifactId>service-data</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>com.starbuds.server</groupId>
  12. <artifactId>service-parent</artifactId>
  13. <version>1.0.0-SNAPSHOT</version>
  14. </parent>
  15. <dependencies>
  16. <!-- 七牛 -->
  17. <dependency>
  18. <groupId>com.qiniu</groupId>
  19. <artifactId>qiniu-java-sdk</artifactId>
  20. <version>7.2.28</version>
  21. </dependency>
  22. <!-- es -->
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  26. </dependency>
  27. <!-- https://mvnrepository.com/artifact/com.dyuproject.protostuff/protostuff-core -->
  28. <dependency>
  29. <groupId>com.dyuproject.protostuff</groupId>
  30. <artifactId>protostuff-core</artifactId>
  31. <version>1.1.5</version>
  32. </dependency>
  33. <!-- https://mvnrepository.com/artifact/com.dyuproject.protostuff/protostuff-runtime -->
  34. <dependency>
  35. <groupId>com.dyuproject.protostuff</groupId>
  36. <artifactId>protostuff-runtime</artifactId>
  37. <version>1.1.5</version>
  38. </dependency>
  39. <!--内容安全-开始-->
  40. <dependency>
  41. <groupId>com.aliyun</groupId>
  42. <artifactId>aliyun-java-sdk-core</artifactId>
  43. <version>4.1.1</version>
  44. </dependency>
  45. <!-- https://mvnrepository.com/artifact/com.aliyun/aliyun-java-sdk-imageaudit -->
  46. <dependency>
  47. <groupId>com.aliyun</groupId>
  48. <artifactId>aliyun-java-sdk-imageaudit</artifactId>
  49. <version>1.0.6</version>
  50. </dependency>
  51. <!--内容安全-结束-->
  52. <!-- Aliyun ONS -->
  53. <dependency>
  54. <groupId>com.aliyun.openservices</groupId>
  55. <artifactId>ons-client</artifactId>
  56. <version>1.8.4.Final</version>
  57. </dependency>
  58. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  59. <dependency>
  60. <groupId>com.squareup.okhttp3</groupId>
  61. <artifactId>okhttp</artifactId>
  62. <version>4.9.0</version>
  63. </dependency>
  64. <!-- https://mvnrepository.com/artifact/org.testng/testng -->
  65. <dependency>
  66. <groupId>org.testng</groupId>
  67. <artifactId>testng</artifactId>
  68. <version>7.1.0</version>
  69. <scope>test</scope>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <finalName>${project.artifactId}</finalName>
  74. <testResources>
  75. <!--测试的时候直接读取src/main/resources的资源文件-->
  76. <testResource>
  77. <directory>${project.basedir}/src/main/resources</directory>
  78. </testResource>
  79. </testResources>
  80. </build>
  81. </project>