| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 | <?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>3.0.0-SNAPSHOT</version>    </parent>    <modelVersion>4.0.0</modelVersion>    <artifactId>elab-spring</artifactId>    <build>        <plugins>            <plugin>                <groupId>org.apache.maven.plugins</groupId>                <artifactId>maven-compiler-plugin</artifactId>                <configuration>                    <source>8</source>                    <target>8</target>                </configuration>            </plugin>        </plugins>    </build>    <!--<version>2.0.1-SNAPSHOT</version>-->    <dependencies>        <!--        <dependency>-->        <!--            <groupId>com.elab.core</groupId>-->        <!--            <artifactId>elab-core</artifactId>-->        <!--            <version>${project.version}</version>-->        <!--        </dependency>-->        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-autoconfigure</artifactId>            <scope>provided</scope>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-configuration-processor</artifactId>            <version>${springboot.version}</version>            <optional>true</optional>        </dependency>        <dependency>            <groupId>com.elab.log</groupId>            <artifactId>elab-log</artifactId>            <version>${project.version}</version>        </dependency>        <dependency>            <groupId>com.elab.core</groupId>            <artifactId>elab-mq</artifactId>            <version>${project.version}</version>            <scope>provided</scope>        </dependency>        <dependency>            <groupId>com.elab.core</groupId>            <artifactId>elab-redis</artifactId>            <version>${project.version}</version>            <scope>provided</scope>        </dependency>        <dependency>            <groupId>com.fasterxml.jackson.core</groupId>            <artifactId>jackson-databind</artifactId>            <version>2.9.8</version>            <scope>provided</scope>        </dependency>        <dependency>            <groupId>com.elab.core</groupId>            <artifactId>elab-db</artifactId>            <version>${project.version}</version>        </dependency>        <!-- Spring Core -->        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-core</artifactId>        </dependency>        <!-- context -->        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-context</artifactId>        </dependency>        <!-- context -->        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-context-support</artifactId>        </dependency>        <!-- jdbc -->        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-jdbc</artifactId>            <scope>provided</scope>        </dependency>        <!-- tx -->        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-tx</artifactId>  <!--spring transaction-->        </dependency>        <!-- beans -->        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-beans</artifactId>        </dependency>        <!-- aop -->        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-aop</artifactId>        </dependency>        <!-- webmvc -->        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-webmvc</artifactId>        </dependency>        <!-- web -->        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-web</artifactId>        </dependency>        <!--<dependency>-->        <!--<groupId>com.elab.core</groupId>-->        <!--<artifactId>elab-db</artifactId>-->        <!--<version>${project.version}</version>-->        <!--</dependency>-->        <dependency>            <groupId>javax.validation</groupId>            <artifactId>validation-api</artifactId>            <scope>compile</scope>        </dependency>        <dependency>            <groupId>io.springfox</groupId>            <artifactId>springfox-swagger2</artifactId>            <scope>compile</scope>            <!--            <exclusions>-->            <!--                <exclusion>-->            <!--                    <artifactId>swagger-models</artifactId>-->            <!--                    <groupId>io.swagger</groupId>-->            <!--                </exclusion>-->            <!--            </exclusions>-->        </dependency>        <dependency>            <groupId>io.springfox</groupId>            <artifactId>springfox-swagger-ui</artifactId>            <scope>compile</scope>        </dependency>        <dependency>            <groupId>javax.validation</groupId>            <artifactId>validation-api</artifactId>            <scope>compile</scope>        </dependency>        <dependency>            <groupId>org.hibernate</groupId>            <artifactId>hibernate-validator</artifactId>            <scope>compile</scope>        </dependency>        <!--        <dependency>-->        <!--            <groupId>org.junit.jupiter</groupId>-->        <!--            <artifactId>junit-jupiter-api</artifactId>-->        <!--            <version>RELEASE</version>-->        <!--            <scope>test</scope>-->        <!--        </dependency>-->        <dependency>            <groupId>junit</groupId>            <artifactId>junit</artifactId>            <scope>test</scope>        </dependency>        <dependency>            <groupId>org.springframework.boot</groupId>            <artifactId>spring-boot-starter-test</artifactId>            <scope>test</scope>        </dependency>        <dependency>            <groupId>org.apache.httpcomponents</groupId>            <artifactId>httpclient</artifactId>        </dependency>        <!--<dependency>-->        <!--<groupId>ch.qos.logback</groupId>-->        <!--<artifactId>logback-classic</artifactId>-->        <!--<version>1.2.3</version>-->        <!--<scope>provided</scope>-->        <!--</dependency>-->    </dependencies>    <distributionManagement>        <!--<repository>-->        <!--<id>releases</id>-->        <!--<name>Nexus Release Repository</name>-->        <!--<url>http://101.231.166.56:8081/nexus/content/repositories/elab/</url>-->        <!--</repository>-->        <snapshotRepository>            <id>snapshots</id>            <name>User Project SNAPSHOTS</name>            <url>http://101.231.166.56:8081/repository/maven-snapshots/</url>        </snapshotRepository>    </distributionManagement></project>
 |