| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 | <?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.10-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>com.elab.log</groupId>            <artifactId>elab-log</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>        </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>        </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>        </dependency>        <dependency>            <groupId>junit</groupId>            <artifactId>junit</artifactId>            <scope>test</scope>        </dependency>        <!--<dependency>-->            <!--<groupId>ch.qos.logback</groupId>-->            <!--<artifactId>logback-classic</artifactId>-->            <!--<version>1.2.3</version>-->            <!--<scope>provided</scope>-->        <!--</dependency>-->    </dependencies></project>
 |