1 Star 0 Fork 17

forkzj/wangmarket_deploy

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
pom.xml 4.88 KB
Copy Edit Raw Blame History
鬼画符 authored 2022-03-25 14:32 . 升级wm、htmlSeparate jar
<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>
<groupId>com.xnx3.wangmarket.deploy</groupId>
<artifactId>wangmarket.deploy</artifactId>
<packaging>war</packaging>
<name>wangmarket_deploy</name>
<version>5.5.1</version>
<description>wangmarket参加活动,部署到服务器</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- 编译时的编码 -->
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<java.version>1.8</java.version>
</properties>
<!-- 定义公共资源版本 -->
<parent>
<groupId>com.xnx3.wangmarket.wm</groupId>
<artifactId>parent</artifactId>
<version>2.11.2</version>
</parent>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
<repository>
<id>maven-ali</id>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</snapshots>
</repository>
</repositories>
<!--
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/com/Application*</exclude>
<exclude>**/*.xml</exclude>
<exclude>/*.properties</exclude>
<exclude>**/*.json</exclude>
<exclude>**/*.db</exclude>
<exclude>**/static/**</exclude>
</excludes>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<targetPath>./</targetPath>
<includes>
<include>META-INF/**</include>
</includes>
</resource>
<resource>
<directory>src/main/resources/static/</directory>
<targetPath>META-INF/resources/</targetPath>
<includes>
<include>plugin/**</include>
</includes>
</resource>
<resource>
<directory>src/main/webapp</directory>
<targetPath>META-INF/resources</targetPath>
<includes>
<include>plugin/**</include>
</includes>
</resource>
<resource>
<directory>src/main/webapp/WEB-INF</directory>
<targetPath>META-INF/resources/WEB-INF/</targetPath>
<includes>
<include>view/**</include>
</includes>
</resource>
</resources>
</build>
-->
<dependencies>
<!-- 这个jar的源文件在 http://wm.zvo.cn -->
<dependency>
<groupId>com.xnx3.wm</groupId>
<artifactId>wm</artifactId>
<version>2.12.3</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/wm-2.12.3.jar</systemPath>
</dependency>
<!-- 这个jar的源文件在 gitee.com/mail_osc/wangmarket -->
<dependency>
<groupId>com.xnx3.wangmarket</groupId>
<artifactId>wangmarket</artifactId>
<version>5.5</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/webapp/WEB-INF/lib/wangmarket-5.5.jar</systemPath>
</dependency>
</dependencies>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/forkzj/wangmarket_deploy.git
git@gitee.com:forkzj/wangmarket_deploy.git
forkzj
wangmarket_deploy
wangmarket_deploy
master

Search