
Some checks are pending
Actions / Litemall-all (11) (push) Waiting to run
Actions / Litemall-all (11.0.3) (push) Waiting to run
Actions / Litemall-all (8) (push) Waiting to run
Actions / Litemall-all (8.0.192) (push) Waiting to run
Actions / Litemall-admin (10.x) (push) Waiting to run
Actions / Litemall-admin (12.x) (push) Waiting to run
Actions / Litemall-admin (14.x) (push) Waiting to run
Actions / Litemall-vue (10.x) (push) Waiting to run
Actions / Litemall-vue (12.x) (push) Waiting to run
Actions / Litemall-vue (14.x) (push) Waiting to run
83 lines
2.9 KiB
XML
83 lines
2.9 KiB
XML
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>
|
|
<artifactId>litemall-all-war</artifactId>
|
|
<packaging>war</packaging>
|
|
|
|
<parent>
|
|
<groupId>org.linlinjava</groupId>
|
|
<artifactId>litemall</artifactId>
|
|
<version>0.1.0</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.linlinjava</groupId>
|
|
<artifactId>litemall-core</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.linlinjava</groupId>
|
|
<artifactId>litemall-db</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.linlinjava</groupId>
|
|
<artifactId>litemall-wx-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.linlinjava</groupId>
|
|
<artifactId>litemall-admin-api</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<finalName>litemall</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-resources</id>
|
|
<phase>validate</phase>
|
|
<goals>
|
|
<goal>copy-resources</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${basedir}/target/classes/static</outputDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>../litemall-admin/dist</directory>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>copy-resources-vue</id>
|
|
<phase>validate</phase>
|
|
<goals>
|
|
<goal>copy-resources</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${basedir}/target/classes/static/vue</outputDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>../litemall-vue/dist</directory>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project> |