pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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>war</packaging>
  9. <name>hos-broker</name>
  10. <description>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-tomcat</artifactId>
  56. </exclusion>
  57. </exclusions>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.boot</groupId>
  61. <artifactId>spring-boot-starter-tomcat</artifactId>
  62. <version>1.4.1.RELEASE</version>
  63. <!--<scope>provided</scope>-->
  64. </dependency>
  65. <!-- https://mvnrepository.com/artifact/org.apache.camel/camel-stream -->
  66. <!-- sigar -->
  67. <dependency>
  68. <groupId>org.fusesource</groupId>
  69. <artifactId>sigar</artifactId>
  70. <version>1.6.4</version>
  71. <exclusions>
  72. <exclusion>
  73. <groupId>log4j</groupId>
  74. <artifactId>log4j</artifactId>
  75. </exclusion>
  76. </exclusions>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.slf4j</groupId>
  80. <artifactId>slf4j-log4j12</artifactId>
  81. <version>1.7.21</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.activemq</groupId>
  85. <artifactId>activemq-core</artifactId>
  86. <version>5.7.0</version>
  87. </dependency>
  88. </dependencies>
  89. <build>
  90. <plugins>
  91. <plugin>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-maven-plugin</artifactId>
  94. </plugin>
  95. </plugins>
  96. </build>
  97. </project>