pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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-broker</artifactId>
  7. <version>1.1.1-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9. <name>hos-broker</name>
  10. <description>ESB服务运行模块</description>
  11. <parent>
  12. <groupId>com.yihu.hos</groupId>
  13. <artifactId>hos-web-framework-dependencies</artifactId>
  14. <version>1.1.1-SNAPSHOT</version>
  15. <relativePath>../hos-web-framework-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>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-web</artifactId>
  51. </dependency>
  52. <!-- test -->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-test</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. <!--<dependency>-->
  59. <!--<groupId>org.apache.camel</groupId>-->
  60. <!--<artifactId>camel-test</artifactId>-->
  61. <!--<scope>test</scope>-->
  62. <!--</dependency>-->
  63. <dependency>
  64. <groupId>com.yihu.hos.resource</groupId>
  65. <artifactId>Hos-Framework</artifactId>
  66. <version>1.0.7</version>
  67. </dependency>
  68. </dependencies>
  69. <build>
  70. <plugins>
  71. <plugin>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-maven-plugin</artifactId>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>