Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
MCMS
Commits
011ef90a
Commit
011ef90a
authored
Sep 12, 2020
by
wujj
Browse files
升级包、样式、上传路径修改
parent
25617095
Changes
1
Hide whitespace changes
Inline
Side-by-side
pom.xml
View file @
011ef90a
...
@@ -12,9 +12,35 @@
...
@@ -12,9 +12,35 @@
<artifactId>
ms-mcms
</artifactId>
<artifactId>
ms-mcms
</artifactId>
<version>
5.1
</version>
<version>
5.1
</version>
<name>
ms-mcms
</name>
<name>
ms-mcms
</name>
<packaging>
war
</packaging>
<properties>
<properties>
<java.version>
1.8
</java.version>
<java.version>
1.8
</java.version>
</properties>
</properties>
<repositories>
<repository>
<id>
deploy
</id>
<name>
ms
</name>
<url>
http://192.168.0.8:5000/repository/maven-public/
</url>
<releases>
<enabled>
true
</enabled>
</releases>
<snapshots>
<enabled>
true
</enabled>
</snapshots>
</repository>
</repositories>
<distributionManagement>
<snapshotRepository>
<id>
deploy
</id>
<name>
Sonatype Nexus snapshot repository
</name>
<url>
http://192.168.0.8:5000/repository/maven-snapshots/
</url>
</snapshotRepository>
<repository>
<id>
deploy
</id>
<name>
Sonatype Nexus release repository
</name>
<url>
http://192.168.0.8:5000/repository/maven-releases/
</url>
</repository>
</distributionManagement>
<dependencies>
<dependencies>
<dependency>
<dependency>
...
@@ -22,12 +48,63 @@
...
@@ -22,12 +48,63 @@
<artifactId>
ms-mpeople
</artifactId>
<artifactId>
ms-mpeople
</artifactId>
<version>
1.0.26
</version>
<version>
1.0.26
</version>
</dependency>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-basic
</artifactId>
<version>
1.0.31
</version>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-mweixin
</artifactId>
<version>
1.0.11-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-mpay
</artifactId>
<version>
1.0.6-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-mcomment
</artifactId>
<version>
1.0.3-SNAPSHOT
</version>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-mattention
</artifactId>
<version>
1.0.3
</version>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-msend
</artifactId>
<version>
1.0.11-SNAPSHOT
</version>
</dependency>
<!-- 此部分是铭飞平台MStroe的客户端(MStore不在铭飞开源产品范围),如果不需要使用MStore可以删除掉 -->
<!-- 此部分是铭飞平台MStroe的客户端(MStore不在铭飞开源产品范围),如果不需要使用MStore可以删除掉 -->
<dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<groupId>
net.mingsoft
</groupId>
<artifactId>
store-client
</artifactId>
<artifactId>
store-client
</artifactId>
<version>
5.0
</version>
<version>
5.0
</version>
</dependency>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
<exclusions>
<exclusion>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-tomcat
</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-tomcat
</artifactId>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
org.apache.tomcat
</groupId>
<artifactId>
tomcat-servlet-api
</artifactId>
<version>
7.0.42
</version>
<scope>
provided
</scope>
</dependency>
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter
</artifactId>
<artifactId>
spring-boot-starter
</artifactId>
...
@@ -38,7 +115,9 @@
...
@@ -38,7 +115,9 @@
</exclusion>
</exclusion>
</exclusions>
</exclusions>
</dependency>
</dependency>
</dependencies>
</dependencies>
<build>
<build>
<finalName>
ms-mcms
</finalName>
<finalName>
ms-mcms
</finalName>
<plugins>
<plugins>
...
@@ -61,20 +140,30 @@
...
@@ -61,20 +140,30 @@
</goals>
</goals>
</execution>
</execution>
</executions>
</executions>
<configuration>
<fork>
true
</fork>
</configuration>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-war-plugin
</artifactId>
<configuration>
<warSourceExcludes>
src/main/resources/**
</warSourceExcludes>
<warName>
store
</warName>
</configuration>
</plugin>
</plugin>
</plugins>
</plugins>
<resources>
<resources>
<resource>
<resource>
<directory>
src/main/java
</directory>
<filtering>
true
</filtering>
<excludes>
<directory>
src/main/webapp
</directory>
<exclude>
**/*.java
</exclude>
</excludes>
</resource>
</resource>
<resource>
<resource>
<directory>
src/main/resources
</directory>
<directory>
src/main/resources
</directory>
</resource>
</resource>
<resource>
<resource>
<directory>
src/main/
webapp
</directory>
<directory>
src/main/
java
</directory>
</resource>
</resource>
</resources>
</resources>
<defaultGoal>
compile
</defaultGoal>
<defaultGoal>
compile
</defaultGoal>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment