msopen/pom.xml

110 lines
2.9 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>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.2.RELEASE</version>
</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-08-29 11:58:50 +08:00
<artifactId>mcms</artifactId>
<version>5.0.0</version>
<name>ms-mcms</name>
2020-01-10 22:14:08 +08:00
<properties>
<java.version>1.8</java.version>
</properties>
2020-05-08 17:48:08 +08:00
<repositories>
<repository>
2020-06-23 17:06:02 +08:00
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
2020-08-29 11:58:50 +08:00
<url>http://repo1.maven.org/maven2/</url>
2020-05-08 17:48:08 +08:00
<releases>
<enabled>true</enabled>
</releases>
2020-06-23 17:06:02 +08:00
<snapshots>
2020-08-29 11:58:50 +08:00
<enabled>true</enabled>
2020-06-23 17:06:02 +08:00
</snapshots>
</repository>
<repository>
<id>sonatype</id>
<name>Sonatype Snapshots</name>
<url>https://oss.sonatype.org/content/groups/public/</url>
<releases>
2020-08-29 11:58:50 +08:00
<enabled>true</enabled>
2020-06-23 17:06:02 +08:00
</releases>
2020-05-08 17:48:08 +08:00
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
2019-12-04 18:08:53 +08:00
<dependencies>
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-mpeople</artifactId>
2020-08-29 11:58:50 +08:00
<version>1.0.24</version>
2020-01-07 14:12:11 +08:00
</dependency>
2020-06-19 18:19:05 +08:00
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-basic</artifactId>
2020-06-20 09:02:18 +08:00
<version>1.0.29-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>net.mingsoft</groupId>
2020-06-19 18:19:05 +08:00
<artifactId>ms-upgrader</artifactId>
2020-08-11 15:30:36 +08:00
<version>1.0.18-SNAPSHOT</version>
2020-06-19 18:19:05 +08:00
</dependency>
2020-06-28 23:01:48 +08:00
<dependency>
<groupId>com.github.stuxuhai</groupId>
<artifactId>jpinyin</artifactId>
<version>1.1.8</version>
</dependency>
2020-08-29 11:58:50 +08:00
<!-- 此部分是铭飞平台MStroe的客户端MStore不在铭飞开源产品范围如果不需要使用MStore可以删除掉 -->
<dependency>
<groupId>net.mingsoft</groupId>
<artifactId>ms-upgrader</artifactId>
<version>1.0.17</version>
</dependency>
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>
2020-01-10 22:14:08 +08:00
<plugin>
2020-08-29 11:58:50 +08:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2019-12-04 18:08:53 +08:00
<executions>
<execution>
<goals>
2020-08-29 11:58:50 +08:00
<goal>repackage</goal>
2019-12-04 18:08:53 +08:00
</goals>
</execution>
</executions>
2020-01-10 22:14:08 +08:00
<configuration>
2020-08-29 11:58:50 +08:00
<fork>true</fork>
2020-01-10 22:14:08 +08:00
</configuration>
</plugin>
2019-12-04 18:08:53 +08:00
</plugins>
2020-08-29 11:58:50 +08:00
<resources>
<resource>
<directory>src/main/webapp</directory>
</resource>
<resource>
<directory>src/main/resources</directory>
</resource>
<resource>
<directory>src/main/java</directory>
</resource>
</resources>
2019-12-04 18:08:53 +08:00
<defaultGoal>compile</defaultGoal>
</build>
2020-08-29 11:58:50 +08:00
</project>