Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MCMS
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
MCMS
Commits
fea341b3
Commit
fea341b3
authored
May 05, 2016
by
ms-dev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
版本号更新
parent
bec03310
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
21 deletions
+31
-21
.settings/org.eclipse.wst.common.component
.settings/org.eclipse.wst.common.component
+2
-2
pom.xml
pom.xml
+29
-19
No files found.
.settings/org.eclipse.wst.common.component
View file @
fea341b3
...
...
@@ -5,10 +5,10 @@
<wb-resource
deploy-path=
"/WEB-INF/classes"
source-path=
"/src/main/java"
/>
<wb-resource
deploy-path=
"/WEB-INF/classes"
source-path=
"/src/main/resources"
/>
<wb-resource
deploy-path=
"/WEB-INF/classes"
source-path=
"/src/test/java"
/>
<dependent-module
deploy-path=
"/"
handle=
"module:/overlay/var/M2_REPO/net/mingsoft/ms-mdiy/1.0.
0-SNAPSHOT/ms-mdiy-1.0.0
-SNAPSHOT.war?unpackFolder=target/m2e-wtp/overlays&includes=**/**&excludes=META-INF/MANIFEST.MF"
>
<dependent-module
deploy-path=
"/"
handle=
"module:/overlay/var/M2_REPO/net/mingsoft/ms-mdiy/1.0.
1-SNAPSHOT/ms-mdiy-1.0.1
-SNAPSHOT.war?unpackFolder=target/m2e-wtp/overlays&includes=**/**&excludes=META-INF/MANIFEST.MF"
>
<dependency-type>
consumes
</dependency-type>
</dependent-module>
<dependent-module
deploy-path=
"/"
handle=
"module:/overlay/var/M2_REPO/net/mingsoft/ms-basic/1.0.
0-SNAPSHOT/ms-basic-1.0.0
-SNAPSHOT.war?unpackFolder=target/m2e-wtp/overlays&includes=**/**&excludes=META-INF/MANIFEST.MF"
>
<dependent-module
deploy-path=
"/"
handle=
"module:/overlay/var/M2_REPO/net/mingsoft/ms-basic/1.0.
2-SNAPSHOT/ms-basic-1.0.2
-SNAPSHOT.war?unpackFolder=target/m2e-wtp/overlays&includes=**/**&excludes=META-INF/MANIFEST.MF"
>
<dependency-type>
consumes
</dependency-type>
</dependent-module>
<dependent-module
deploy-path=
"/"
handle=
"module:/overlay/slf/?includes=**/**&excludes=META-INF/MANIFEST.MF"
>
...
...
pom.xml
View file @
fea341b3
...
...
@@ -20,61 +20,71 @@
</snapshots>
</repository>
</repositories>
<properties>
<ms.util.version>
1.0.0
</ms.util.version>
<ms.base.version>
1.0.0
</ms.base.version>
<ms.proxy.version>
1.0.0
</ms.proxy.version>
<ms.parser.version>
1.0.0
</ms.parser.version>
<ms.ueditor.version>
1.0.0-SNAPSHOT
</ms.ueditor.version>
<shiro-freemarker-tags.version>
0.2-SNAPSHOT
</shiro-freemarker-tags.version>
<ms.basic.version>
1.0.2-SNAPSHOT
</ms.basic.version>
<ms.mdiy.version>
1.0.1-SNAPSHOT
</ms.mdiy.version>
</properties>
<dependencies>
<!-- MAVEN源码加载 -->
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-util
</artifactId>
<version>
1.0.0
</version>
<version>
${ms.util.version}
</version>
<classifier>
sources
</classifier>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-base
</artifactId>
<version>
1.0.0
</version>
<version>
${ms.base.version}
</version>
<classifier>
sources
</classifier>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-proxy
</artifactId>
<version>
1.0.0
</version>
<version>
${ms.proxy.version}
</version>
<classifier>
sources
</classifier>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-parser
</artifactId>
<version>
1.0.0
</version>
<version>
${ms.parser.version}
</version>
<classifier>
sources
</classifier>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-ueditor
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<version>
${ms.ueditor.version}
</version>
<classifier>
sources
</classifier>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
shiro-freemarker-tags
</artifactId>
<version>
0.1-SNAPSHOT
</version>
<version>
${shiro-freemarker-tags.version}
</version>
<classifier>
sources
</classifier>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-basic
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<classifier>
sources
</classifier>
<version>
${ms.basic.version}
</version>
<classifier>
sources
</classifier>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-mdiy
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<version>
${ms.mdiy.version}
</version>
<classifier>
sources
</classifier>
<scope>
provided
</scope>
</dependency>
...
...
@@ -82,42 +92,42 @@
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-base
</artifactId>
<version>
1.0.0
</version>
<version>
${ms.base.version}
</version>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-parser
</artifactId>
<version>
1.0.0
</version>
<version>
${ms.parser.version}
</version>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-basic
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<version>
${ms.basic.version}
</version>
<type>
war
</type>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-basic
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<version>
${ms.basic.version}
</version>
<classifier>
classes
</classifier>
<scope>
provided
</scope>
</dependency>
<dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-ueditor
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<version>
${ms.ueditor.version}
</version>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-mdiy
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<version>
${ms.mdiy.version}
</version>
<classifier>
classes
</classifier>
<scope>
provided
</scope>
</dependency>
<dependency>
<groupId>
net.mingsoft
</groupId>
<artifactId>
ms-mdiy
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<version>
${ms.mdiy.version}
</version>
<type>
war
</type>
</dependency>
...
...
@@ -164,7 +174,7 @@
</configuration>
</plugin>
</plugins>
</plugins>
<defaultGoal>
compile
</defaultGoal>
</build>
</project>
</project>
\ No newline at end of file
Write
Preview
Markdown
is supported
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