forked from github/dataease
110 lines
3.6 KiB
XML
110 lines
3.6 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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">
|
||
|
<parent>
|
||
|
<artifactId>view-racebar</artifactId>
|
||
|
<groupId>io.dataease</groupId>
|
||
|
<version>${dataease.version}</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>view-racebar-backend</artifactId>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>io.dataease</groupId>
|
||
|
<artifactId>dataease-plugin-view</artifactId>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/java</directory>
|
||
|
<includes>
|
||
|
<include>**/*.properties</include>
|
||
|
<include>**/*.xml</include>
|
||
|
</includes>
|
||
|
<filtering>false</filtering>
|
||
|
</resource>
|
||
|
<resource>
|
||
|
<directory>src/main/resources</directory>
|
||
|
<includes>
|
||
|
<include>**/*</include>
|
||
|
</includes>
|
||
|
<filtering>false</filtering>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>11</source>
|
||
|
<target>11</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>2.4</version>
|
||
|
<configuration>
|
||
|
<excludes>
|
||
|
<exclude>**/server/**</exclude>
|
||
|
<exclude>**/*.properties</exclude>
|
||
|
<exclude>**/Application*</exclude>
|
||
|
</excludes>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<artifactId>maven-clean-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<filesets>
|
||
|
<fileset>
|
||
|
<directory>src/main/resources/static</directory>
|
||
|
<includes>
|
||
|
<include>**</include>
|
||
|
</includes>
|
||
|
<followSymlinks>false</followSymlinks>
|
||
|
</fileset>
|
||
|
|
||
|
</filesets>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-antrun-plugin</artifactId>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>main-class-placement</id>
|
||
|
<phase>generate-resources</phase>
|
||
|
<configuration>
|
||
|
<target>
|
||
|
<move todir="src/main/resources/static">
|
||
|
<fileset dir="../view-racebar-frontend/static">
|
||
|
<include name="*.*"/>
|
||
|
</fileset>
|
||
|
</move>
|
||
|
|
||
|
</target>
|
||
|
</configuration>
|
||
|
<goals>
|
||
|
<goal>run</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
|
||
|
</project>
|