pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <parent>
  7. <groupId>com.persagy</groupId>
  8. <artifactId>adm-business</artifactId>
  9. <version>1.0.0</version>
  10. </parent>
  11. <groupId>com.persagy</groupId>
  12. <artifactId>adm-diagram</artifactId>
  13. <repositories>
  14. <repository>
  15. <id>Persagy</id>
  16. <name>persagy</name>
  17. <url>http://47.93.132.139:8081/nexus/content/groups/public/</url>
  18. <snapshots>
  19. <enabled>true</enabled>
  20. </snapshots>
  21. <releases>
  22. <enabled>true</enabled>
  23. </releases>
  24. </repository>
  25. </repositories>
  26. <dependencies>
  27. <!-- 配置中心(包含注册中心) -->
  28. <dependency>
  29. <groupId>com.persagy</groupId>
  30. <artifactId>integrated-config-client</artifactId>
  31. </dependency>
  32. <!-- 项目启动 -->
  33. <dependency>
  34. <groupId>com.persagy</groupId>
  35. <artifactId>dmp-server</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.persagy</groupId>
  39. <artifactId>dmp-mybatis</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.persagy</groupId>
  43. <artifactId>dmp-digital-starter</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.persagy</groupId>
  47. <artifactId>dmp-file-starter</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-web</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.locationtech.jts</groupId>
  55. <artifactId>jts-core</artifactId>
  56. <version>1.16.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.google.code.gson</groupId>
  60. <artifactId>gson</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.spring4all</groupId>
  64. <artifactId>swagger-spring-boot-starter</artifactId>
  65. <version>1.7.1.RELEASE</version>
  66. </dependency>
  67. </dependencies>
  68. </project>