Browse Source

新增项目工程

chenweida 7 years ago
parent
commit
0d97c14ce8
3 changed files with 27 additions and 0 deletions
  1. 1 0
      common-lib-parent-pom/pom.xml
  2. 21 0
      common/common-mq/pom.xml
  3. 5 0
      svr-lib-parent-pom/pom.xml

+ 1 - 0
common-lib-parent-pom/pom.xml

@ -32,6 +32,7 @@
        <module>../common/common-mongodb</module>
        <module>../common/common-es</module>
        <module>../common/common-solr</module>
        <module>../common/common-mq</module>
    </modules>
</project>

+ 21 - 0
common/common-mq/pom.xml

@ -0,0 +1,21 @@
<?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>
    <parent>
        <groupId>com.yihu.jw</groupId>
        <artifactId>common-lib-parent-pom</artifactId>
        <version>1.0.0</version>
        <relativePath>../../common-lib-parent-pom/pom.xml</relativePath>
    </parent>
    <artifactId>common-mq</artifactId>
    <version>1.0.0</version>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-activemq</artifactId>
        </dependency>
    </dependencies>
</project>

+ 5 - 0
svr-lib-parent-pom/pom.xml

@ -300,6 +300,11 @@
                <artifactId>spring-boot-starter-data-mongodb</artifactId>
                <version>${version.springBoot}</version>
            </dependency>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-activemq</artifactId>
                <version>${version.springBoot}</version>
            </dependency>
            <!--springBoot end-->