You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
198 lines
5.3 KiB
198 lines
5.3 KiB
<?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"> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>net.mingsoft</groupId> |
|
<artifactId>mcms</artifactId> |
|
<version>0.0.1-SNAPSHOT</version> |
|
<name>mcms1</name> |
|
<packaging>war</packaging> |
|
<properties> |
|
<java.version>1.8</java.version> |
|
</properties> |
|
<repositories> |
|
<repository> |
|
<id>sonatype-nexus-snapshots</id> |
|
<name>Sonatype Nexus Snapshots</name> |
|
<url>http://repo1.maven.org/maven2/</url> |
|
<releases> |
|
<enabled>true</enabled> |
|
</releases> |
|
<snapshots> |
|
<enabled>true</enabled> |
|
</snapshots> |
|
</repository> |
|
<repository> |
|
<id>sonatype</id> |
|
<name>Sonatype Snapshots</name> |
|
<url>https://oss.sonatype.org/content/groups/public/</url> |
|
<releases> |
|
<enabled>true</enabled> |
|
</releases> |
|
<snapshots> |
|
<enabled>true</enabled> |
|
</snapshots> |
|
</repository> |
|
</repositories> |
|
<dependencies> |
|
<dependency> |
|
<groupId>net.mingsoft</groupId> |
|
<artifactId>ms-base</artifactId> |
|
<version>1.0.8.1-SNAPSHOT</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.mingsoft</groupId> |
|
<artifactId>ms-basic</artifactId> |
|
<version>1.0.8.1-SNAPSHOT</version> |
|
<classifier>classes</classifier> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.mingsoft</groupId> |
|
<artifactId>ms-basic</artifactId> |
|
<version>1.0.8.1-SNAPSHOT</version> |
|
<type>war</type> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.mingsoft</groupId> |
|
<artifactId>ms-mdiy</artifactId> |
|
<version>1.0.7-SNAPSHOT</version> |
|
<classifier>classes</classifier> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.mingsoft</groupId> |
|
<artifactId>ms-mdiy</artifactId> |
|
<version>1.0.7-SNAPSHOT</version> |
|
<type>war</type> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.mingsoft</groupId> |
|
<artifactId>ms-mpeople</artifactId> |
|
<version>1.0.7-SNAPSHOT</version> |
|
<classifier>classes</classifier> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>net.mingsoft</groupId> |
|
<artifactId>ms-mpeople</artifactId> |
|
<version>1.0.7-SNAPSHOT</version> |
|
<type>war</type> |
|
</dependency> |
|
|
|
<!-- swagger2接口文档依赖 --> |
|
<dependency> |
|
<groupId>io.springfox</groupId> |
|
<artifactId>springfox-swagger2</artifactId> |
|
<version>2.9.2</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-beans</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context-support</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-aop</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-tx</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-orm</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-jdbc</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-web</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-webmvc</artifactId> |
|
</exclusion> |
|
<exclusion> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-oxm</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.springfox</groupId> |
|
<artifactId>springfox-swagger-ui</artifactId> |
|
<version>2.9.2</version> |
|
</dependency> |
|
</dependencies> |
|
<build> |
|
<finalName>ms-mcms</finalName> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<version>3.1</version> |
|
<configuration> |
|
<source>${java.version}</source> |
|
<target>${java.version}</target> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<goals> |
|
<goal>repackage</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
<configuration> |
|
<fork>true</fork> |
|
</configuration> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-war-plugin</artifactId> |
|
<configuration> |
|
<failOnMissingWebXml>false</failOnMissingWebXml> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
<resources> |
|
<resource> |
|
<directory>src/main/webapp</directory> |
|
</resource> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<filtering>true</filtering> |
|
</resource> |
|
<resource> |
|
<directory>src/main/java</directory> |
|
<includes> |
|
<include>**/*.xml</include> |
|
</includes> |
|
</resource> |
|
</resources> |
|
<defaultGoal>compile</defaultGoal> |
|
</build> |
|
</project> |