pom.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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-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. </dependency>
  53. <!-- https://mvnrepository.com/artifact/org.apache.camel/camel-stream -->
  54. <!-- sigar -->
  55. <dependency>
  56. <groupId>org.fusesource</groupId>
  57. <artifactId>sigar</artifactId>
  58. <version>1.6.4</version>
  59. <exclusions>
  60. <exclusion>
  61. <groupId>log4j</groupId>
  62. <artifactId>log4j</artifactId>
  63. </exclusion>
  64. </exclusions>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.slf4j</groupId>
  68. <artifactId>slf4j-log4j12</artifactId>
  69. <version>1.7.21</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.apache.activemq</groupId>
  73. <artifactId>activemq-core</artifactId>
  74. <version>5.7.0</version>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-maven-plugin</artifactId>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. </project>