.flattened-pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>cn.sikey.cloud</groupId>
  6. <artifactId>sikey-selenium-business-api</artifactId>
  7. <version>2.3.0-SNAPSHOT</version>
  8. <name>sikey-selenium-business-api</name>
  9. <description>selenium 模块 API,暴露给其它模块调用</description>
  10. <dependencies>
  11. <dependency>
  12. <groupId>cn.sikey.cloud</groupId>
  13. <artifactId>sikey-common</artifactId>
  14. <version>2.3.0-SNAPSHOT</version>
  15. <scope>compile</scope>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-validation</artifactId>
  20. <version>3.4.0</version>
  21. <scope>compile</scope>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-starter-openfeign</artifactId>
  26. <version>4.2.0</version>
  27. <scope>compile</scope>
  28. </dependency>
  29. </dependencies>
  30. <repositories>
  31. <repository>
  32. <id>huaweicloud</id>
  33. <name>huawei</name>
  34. <url>https://mirrors.huaweicloud.com/repository/maven/</url>
  35. </repository>
  36. <repository>
  37. <id>aliyunmaven</id>
  38. <name>aliyun</name>
  39. <url>https://maven.aliyun.com/repository/public</url>
  40. </repository>
  41. <repository>
  42. <snapshots>
  43. <enabled>false</enabled>
  44. </snapshots>
  45. <id>spring-milestones</id>
  46. <name>Spring Milestones</name>
  47. <url>https://repo.spring.io/milestone</url>
  48. </repository>
  49. <repository>
  50. <releases>
  51. <enabled>false</enabled>
  52. </releases>
  53. <id>spring-snapshots</id>
  54. <name>Spring Snapshots</name>
  55. <url>https://repo.spring.io/snapshot</url>
  56. </repository>
  57. </repositories>
  58. </project>