pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. <artifactId>hos-broker</artifactId>
  6. <version>1.3.0</version>
  7. <packaging>war</packaging>
  8. <name>hos-broker</name>
  9. <description>ESB服务运行模块</description>
  10. <parent>
  11. <groupId>com.yihu.hos</groupId>
  12. <artifactId>hos-web-camel-dependencies</artifactId>
  13. <version>1.3.0</version>
  14. <relativePath>../hos-web-camel-dependencies</relativePath><!-- lookup parent from repository -->
  15. </parent>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. </properties>
  21. <!--用于发布到服务器 对应setting的对应server表情里面的id -->
  22. <distributionManagement>
  23. <repository>
  24. <id>Releases</id>
  25. <name>Releases</name>
  26. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  27. </repository>
  28. <snapshotRepository>
  29. <id>snapshots</id>
  30. <name>Snapshots</name>
  31. <url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
  32. </snapshotRepository>
  33. </distributionManagement>
  34. <repositories>
  35. <repository>
  36. <id>repositoryCentral</id>
  37. <name>repositoryCentral</name>
  38. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  39. </repository>
  40. <repository>
  41. <id>repositoryReleases</id>
  42. <name>repositoryReleases</name>
  43. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  44. </repository>
  45. </repositories>
  46. <dependencies>
  47. <dependency>
  48. <groupId>com.yihu.hos</groupId>
  49. <artifactId>hos-web-framework</artifactId>
  50. <version>1.3.0</version>
  51. <exclusions>
  52. <exclusion>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-tomcat</artifactId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-tomcat</artifactId>
  61. <version>1.4.1.RELEASE</version>
  62. <!--<scope>provided</scope>-->
  63. </dependency>
  64. <!-- https://mvnrepository.com/artifact/org.apache.camel/camel-stream -->
  65. <!-- sigar -->
  66. <dependency>
  67. <groupId>org.fusesource</groupId>
  68. <artifactId>sigar</artifactId>
  69. <version>1.6.4</version>
  70. <exclusions>
  71. <exclusion>
  72. <groupId>log4j</groupId>
  73. <artifactId>log4j</artifactId>
  74. </exclusion>
  75. </exclusions>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.slf4j</groupId>
  79. <artifactId>slf4j-log4j12</artifactId>
  80. <version>1.7.21</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.activemq</groupId>
  84. <artifactId>activemq-core</artifactId>
  85. <version>5.7.0</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-configuration-processor</artifactId>
  90. <optional>true</optional>
  91. </dependency>
  92. </dependencies>
  93. <build>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-maven-plugin</artifactId>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>