1 Star 0 Fork 7.2K

carcoon/platform-wechat-mall

forked from 微同软件/微同商城 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 3.26 KB
一键复制 编辑 原始数据 按行查看 历史
微同软件 提交于 2018-07-11 12:53 +08:00 . package skipTests
<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>
<parent>
<artifactId>platform</artifactId>
<groupId>com.platform</groupId>
<version>1.0.0</version>
</parent>
<artifactId>platform-framework</artifactId>
<packaging>war</packaging>
<name>platform-framework</name>
<description>
此项目为系统WEB合并,
合并项目可以根据需要自己配置。
最终打包的项目也根据此配置进行打包。
</description>
<dependencies>
<dependency>
<groupId>com.platform</groupId>
<artifactId>platform-common</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.platform</groupId>
<artifactId>platform-gen</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.platform</groupId>
<artifactId>platform-schedule</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.platform</groupId>
<artifactId>platform-api</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.platform</groupId>
<artifactId>platform-admin</artifactId>
<version>1.0.0</version>
<type>war</type>
</dependency>
<dependency>
<groupId>com.platform</groupId>
<artifactId>platform-shop</artifactId>
<version>1.0.0</version>
<type>war</type>
</dependency>
</dependencies>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<finalName>platform-framework</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
<!-- 合并多个war -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
<configuration>
<packagingExcludes>WEB-INF/web.xml</packagingExcludes>
<failOnMissingWebXml>false</failOnMissingWebXml>
<overlays>
<overlay>
<groupId>com.platform</groupId>
<artifactId>platform-admin</artifactId>
</overlay>
<overlay>
<groupId>com.platform</groupId>
<artifactId>platform-shop</artifactId>
</overlay>
<!-- 待添加其他要合并的 web 模块 -->
</overlays>
</configuration>
</plugin>
</plugins>
</build>
</project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/carcoon/platform.git
git@gitee.com:carcoon/platform.git
carcoon
platform
platform-wechat-mall
master

搜索帮助