pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.yihu.hos</groupId>
  6. <artifactId>hos-rest</artifactId>
  7. <version>1.1.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>hos-rest</name>
  10. <description>ESB业务服务模块,实现ESB基础业务逻辑</description>
  11. <parent>
  12. <groupId>com.yihu.hos</groupId>
  13. <artifactId>hos-web-camel-dependencies</artifactId>
  14. <version>1.1.1-SNAPSHOT</version>
  15. <relativePath>../hos-web-camel-dependencies</relativePath><!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. </properties>
  22. <!--用于发布到服务器 对应setting的对应server表情里面的id -->
  23. <distributionManagement>
  24. <repository>
  25. <id>Releases</id>
  26. <name>Releases</name>
  27. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  28. </repository>
  29. <snapshotRepository>
  30. <id>snapshots</id>
  31. <name>Snapshots</name>
  32. <url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
  33. </snapshotRepository>
  34. </distributionManagement>
  35. <repositories>
  36. <repository>
  37. <id>repositoryCentral</id>
  38. <name>repositoryCentral</name>
  39. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  40. </repository>
  41. <repository>
  42. <id>repositoryReleases</id>
  43. <name>repositoryReleases</name>
  44. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  45. </repository>
  46. </repositories>
  47. <dependencies>
  48. <dependency>
  49. <groupId>com.yihu.hos</groupId>
  50. <artifactId>hos-web-framework</artifactId>
  51. <version>1.1.1-SNAPSHOT</version>
  52. <exclusions>
  53. <exclusion>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-data-jpa</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework</groupId>
  61. <artifactId>spring-orm</artifactId>
  62. <version>${spring.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.yihu.core</groupId>
  66. <artifactId>api-dict</artifactId>
  67. <version>1.6.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.yihu.core</groupId>
  71. <artifactId>core-rpc</artifactId>
  72. <version>2.2.0</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.yihu.core</groupId>
  76. <artifactId>api-config</artifactId>
  77. <version>2.2.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.yihu.core</groupId>
  81. <artifactId>core-db</artifactId>
  82. <version>1.3.0</version>
  83. </dependency>
  84. </dependencies>
  85. <build>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-maven-plugin</artifactId>
  90. </plugin>
  91. </plugins>
  92. </build>
  93. </project>