msopen/pom.xml

61 lines
1.7 KiB
XML
Raw Normal View History

2019-12-04 18:10:12 +08:00
<?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">
2020-08-29 11:58:50 +08:00
<parent>
2020-09-02 16:42:17 +08:00
<groupId>net.mingsoft</groupId>
<artifactId>ms-pom</artifactId>
<version>2.0.0-SNAPSHOT</version>
2020-08-29 11:58:50 +08:00
</parent>
2020-06-17 18:17:41 +08:00
<modelVersion>4.0.0</modelVersion>
2019-12-04 18:08:53 +08:00
<groupId>net.mingsoft</groupId>
2020-09-04 11:36:32 +08:00
<artifactId>ms-mcms</artifactId>
2020-09-02 16:42:17 +08:00
<version>5.1-SNAPSHOT</version>
2020-08-29 11:58:50 +08:00
<name>ms-mcms</name>
2020-01-10 22:14:08 +08:00
<properties>
<java.version>1.8</java.version>
</properties>
2020-09-02 16:42:17 +08:00
2019-12-04 18:08:53 +08:00
<dependencies>
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-mpeople</artifactId>
2020-06-19 18:19:05 +08:00
</dependency>
2020-08-29 11:58:50 +08:00
<!-- 此部分是铭飞平台MStroe的客户端MStore不在铭飞开源产品范围如果不需要使用MStore可以删除掉 -->
2020-09-04 11:36:32 +08:00
2019-12-04 18:08:53 +08:00
</dependencies>
<build>
2020-08-29 11:58:50 +08:00
<finalName>ms-mcms</finalName>
2019-12-04 18:08:53 +08:00
<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>
</plugins>
2020-08-29 11:58:50 +08:00
<resources>
<resource>
<directory>src/main/webapp</directory>
2020-09-04 11:36:32 +08:00
<excludes>
<exclude>static/**</exclude>
<exclude>html/**</exclude>
<exclude>upload/**</exclude>
<exclude>templets/**</exclude>
</excludes>
2020-08-29 11:58:50 +08:00
</resource>
<resource>
<directory>src/main/java</directory>
2020-09-04 11:36:32 +08:00
<excludes>
<exclude>**/*.java</exclude>
<exclude>**/MSApplication.class</exclude>
<exclude>**/MSServletInitializer.class</exclude>
</excludes>
2020-08-29 11:58:50 +08:00
</resource>
</resources>
2019-12-04 18:08:53 +08:00
<defaultGoal>compile</defaultGoal>
</build>
2020-08-29 11:58:50 +08:00
</project>