<?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.14-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>com.elab.log</groupId> <artifactId>elab-log</artifactId> <version>${project.version}</version> </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> </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>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</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> <distributionManagement> <!--<repository>--> <!--<id>releases</id>--> <!--<name>Nexus Release Repository</name>--> <!--<url>http://192.168.0.11:8081/nexus/content/repositories/elab/</url>--> <!--</repository>--> <snapshotRepository> <id>snapshots</id> <name>User Project SNAPSHOTS</name> <url>http://192.168.0.11:8081/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> </project>