pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. </repositories>
  44. <dependencies>
  45. <!-- 配置中心(包含注册中心) -->
  46. <dependency>
  47. <groupId>com.persagy</groupId>
  48. <artifactId>integrated-config-client</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.persagy</groupId>
  52. <artifactId>dmp-digital-starter</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.persagy</groupId>
  56. <artifactId>dmp-server</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>fastjson</artifactId>
  61. </dependency>
  62. </dependencies>
  63. <build>
  64. <plugins>
  65. <plugin>
  66. <groupId>org.springframework.boot</groupId>
  67. <artifactId>spring-boot-maven-plugin</artifactId>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>