1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.yihu.hos</groupId>
- <artifactId>hos-broker</artifactId>
- <version>1.1.1-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>hos-broker</name>
- <description>ESB服务运行模块</description>
- <parent>
- <groupId>com.yihu.hos</groupId>
- <artifactId>hos-web-camel-dependencies</artifactId>
- <version>1.1.1-SNAPSHOT</version>
- <relativePath>../hos-web-camel-dependencies</relativePath><!-- lookup parent from repository -->
- </parent>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <java.version>1.8</java.version>
- </properties>
- <!--用于发布到服务器 对应setting的对应server表情里面的id -->
- <distributionManagement>
- <repository>
- <id>Releases</id>
- <name>Releases</name>
- <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
- </repository>
- <snapshotRepository>
- <id>snapshots</id>
- <name>Snapshots</name>
- <url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
- </snapshotRepository>
- </distributionManagement>
- <repositories>
- <repository>
- <id>repositoryCentral</id>
- <name>repositoryCentral</name>
- <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
- </repository>
- <repository>
- <id>repositoryReleases</id>
- <name>repositoryReleases</name>
- <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>com.yihu.hos</groupId>
- <artifactId>hos-web-framework</artifactId>
- <version>1.1.1-SNAPSHOT</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.apache.camel/camel-stream -->
- <!-- sigar -->
- <dependency>
- <groupId>org.fusesource</groupId>
- <artifactId>sigar</artifactId>
- <version>1.6.4</version>
- <exclusions>
- <exclusion>
- <groupId>log4j</groupId>
- <artifactId>log4j</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.7.21</version>
- </dependency>
- <dependency>
- <groupId>org.apache.activemq</groupId>
- <artifactId>activemq-core</artifactId>
- <version>5.7.0</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|