Files
smart_venue/pom.xml
2021-03-02 23:50:51 +08:00

104 lines
3.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.7.RELEASE</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>smartvenue</groupId>
<artifactId>smartvenue-parent</artifactId>
<version>2.0.0</version>
<packaging>pom</packaging>
<properties>
<java.version>1.8</java.version>
<smartvenue.version>2.0.0</smartvenue.version>
<spring.boot.version>1.5.7.RELEASE</spring.boot.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>smartvenue</groupId>
<artifactId>sv-entity</artifactId>
<version>${smartvenue.version}</version>
</dependency>
<dependency>
<artifactId>smartvenue</artifactId>
<groupId>sv-api</groupId>
<version>${smartvenue.version}</version>
</dependency>
<dependency>
<artifactId>smartvenue</artifactId>
<groupId>netty-pad</groupId>
<version>${smartvenue.version}</version>
</dependency>
<dependency>
<groupId>smartvenue</groupId>
<artifactId>sv-oms</artifactId>
<version>${smartvenue.version}</version>
</dependency>
<dependency>
<groupId>smartvenue</groupId>
<artifactId>sv-service</artifactId>
<version>${smartvenue.version}</version>
</dependency>
<!-- spring-boot -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>${spring.boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>${spring.boot.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
<version>3.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20</version>
<configuration>
<skipTests>true</skipTests>
<threadCount>1</threadCount>
<includes>
<include>**/*Tests.java</include>
<include>**/*Test.java</include>
</includes>
<excludes>
<exclude>**/Abstract*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>api</module>
<module>entity</module>
<module>oms</module>
<module>service</module>
<module>netty-pad</module>
</modules>
</project>