1 Star 0 Fork 157

yrj / 小V铺微信开源商城

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 4.23 KB
一键复制 编辑 原始数据 按行查看 历史
gaoyh 提交于 2017-03-31 12:53 . 增加两个js的打包
<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.lingke</groupId>
<artifactId>xvp_demo</artifactId>
<version>1.0.1</version>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.3.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
<dependency>
<groupId>com.jfinal</groupId>
<artifactId>jfinal</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.0.15</version>
</dependency>
<dependency>
<groupId>tech.nodex</groupId>
<artifactId>tutils2</artifactId>
<version>1.3.3</version>
</dependency>
<dependency>
<groupId>rkylin</groupId>
<artifactId>rop-sdk</artifactId>
<version>1.0</version>
<systemPath>${project.basedir}/lib/RopExSdk.jar</systemPath>
<scope>system</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
<mainClass>com.lingke.xvp.demo.XvpApp</mainClass>
<executable>true</executable>
<addResources>true</addResources>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>copy-web-seller</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>target/web/seller</outputDirectory>
<resources>
<resource>
<directory>web/seller/</directory>
<includes>
<include>index.html</include>
<include>test_share.html</include>
<include>test_share2.html</include>
<include>xvupload.js</include>
<include>exif.js</include>
<include>MegaPixImage.js</include>
<include>dist/**</include>
<include>static/**</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
<execution>
<id>copy-web-mall</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>target/web/mall</outputDirectory>
<resources>
<resource>
<directory>web/mall/</directory>
<includes>
<include>index.html</include>
<include>xvp.js</include>
<include>dist/**</include>
<include>static/**</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
<execution>
<id>copy-MP_verify_il3WwgxnMwyPpQaY</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>target/web</outputDirectory>
<resources>
<resource>
<directory>web</directory>
<includes>
<include>MP_verify_il3WwgxnMwyPpQaY.txt</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/yrj2012/xvp_demo.git
git@gitee.com:yrj2012/xvp_demo.git
yrj2012
xvp_demo
小V铺微信开源商城
master

搜索帮助