pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <artifactId>dmp-package</artifactId>
  7. <groupId>com.persagy</groupId>
  8. <version>1.0.0</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.persagy</groupId>
  12. <artifactId>persagy-dmp-middleware</artifactId>
  13. <version>1.0.0</version>
  14. <name>persagy-dmp-middleware</name>
  15. <description>dmp中间件</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <repositories>
  20. <repository>
  21. <id>Persagy</id>
  22. <name>persagy</name>
  23. <url>http://47.93.132.139:8081/nexus/content/groups/public/</url>
  24. <snapshots>
  25. <enabled>true</enabled>
  26. </snapshots>
  27. <releases>
  28. <enabled>true</enabled>
  29. </releases>
  30. </repository>
  31. <repository>
  32. <id>persagy</id>
  33. <name>releases Repository</name>
  34. <url>http://47.93.132.139:8081/nexus/content/repositories/persagy/</url>
  35. <layout>default</layout>
  36. <snapshots>
  37. <enabled>true</enabled>
  38. </snapshots>
  39. <releases>
  40. <enabled>true</enabled>
  41. </releases>
  42. </repository>
  43. <repository>
  44. <id>osgeo</id>
  45. <name>Open Source Geospatial Foundation Repository</name>
  46. <url>https://repo.osgeo.org/repository/release/</url>
  47. </repository>
  48. </repositories>
  49. <dependencies>
  50. <!-- 配置中心(包含注册中心) -->
  51. <dependency>
  52. <groupId>com.persagy</groupId>
  53. <artifactId>integrated-config-client</artifactId>
  54. <exclusions>
  55. <exclusion>
  56. <artifactId>xstream</artifactId>
  57. <groupId>com.thoughtworks.xstream</groupId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <!-- 阿里云扫描漏洞要求版本需>=1.4.18 -->
  62. <dependency>
  63. <groupId>com.thoughtworks.xstream</groupId>
  64. <artifactId>xstream</artifactId>
  65. <version>1.4.18</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.persagy</groupId>
  69. <artifactId>dmp-digital-starter</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.persagy</groupId>
  73. <artifactId>dmp-server</artifactId>
  74. <exclusions>
  75. <exclusion>
  76. <groupId>com.persagy</groupId>
  77. <artifactId>dmp-auth</artifactId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. <dependency>
  82. <groupId>javax.ws.rs</groupId>
  83. <artifactId>jsr311-api</artifactId>
  84. <version>1.1.1</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.google.guava</groupId>
  88. <artifactId>guava</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-web</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.persagy</groupId>
  96. <artifactId>dmp-auth-starter</artifactId>
  97. <version>1.0.0</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.persagy</groupId>
  101. <artifactId>dmp-mybatis</artifactId>
  102. </dependency>
  103. </dependencies>
  104. </project>