| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 | <?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">    <parent>        <artifactId>elab-parent</artifactId>        <groupId>com.elab.core</groupId>        <version>2.0.4.12-SNAPSHOT</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>elab-mq</artifactId>    <dependencies>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-autoconfigure</artifactId>            <scope>provided</scope>        </dependency>        <dependency>            <groupId>com.elab.core</groupId>            <artifactId>elab-core</artifactId>            <version>${project.version}</version>        </dependency>        <dependency>            <groupId>com.elab.core</groupId>            <artifactId>elab-spring</artifactId>            <version>${project.version}</version>        </dependency>        <dependency>            <groupId>com.elab.core</groupId>            <artifactId>elab-db</artifactId>            <version>${project.version}</version>        </dependency>        <dependency>            <groupId>com.aliyun.openservices</groupId>            <artifactId>ons-client</artifactId>            <version>1.8.0.Final</version>        </dependency>        <dependency>            <groupId>junit</groupId>            <artifactId>junit</artifactId>            <scope>test</scope>        </dependency>        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-test</artifactId>            <scope>test</scope>        </dependency>    </dependencies>    <build>        <plugins>            <!-- 打包源码插件 -->            <plugin>                <groupId>org.apache.maven.plugins</groupId>                <artifactId>maven-source-plugin</artifactId>                <executions>                    <execution>                        <id>attach-sources</id>                        <goals>                            <goal>jar</goal>                        </goals>                    </execution>                </executions>            </plugin>            <!-- 打包javadoc插件 -->            <!--<plugin>-->                <!--<groupId>org.apache.maven.plugins</groupId>-->                <!--<artifactId>maven-javadoc-plugin</artifactId>-->                <!--<version>2.9</version>-->                <!--<executions>-->                    <!--<execution>-->                        <!--<id>attach-javadocs</id>-->                        <!--<goals>-->                            <!--<goal>jar</goal>-->                        <!--</goals>-->                        <!--<configuration>-->                            <!--<additionalOptions>-Xdoclint:none</additionalOptions>-->                        <!--</configuration>-->                    <!--</execution>-->                <!--</executions>-->            <!--</plugin>-->            <plugin>                <groupId>org.apache.maven.plugins</groupId>                <artifactId>maven-compiler-plugin</artifactId>                <version>2.1</version>                <configuration>                    <source>1.8</source>                    <target>1.8</target>                </configuration>            </plugin>        </plugins>    </build>    <distributionManagement>        <repository>            <id>releases</id>            <name>Nexus Release Repository</name>            <url>http://192.168.0.11:8081/nexus/content/repositories/elab/</url>        </repository>    </distributionManagement></project>
 |