144 lines
5.6 KiB
XML
144 lines
5.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">
|
|||
|
<modelVersion>4.0.0</modelVersion>
|
|||
|
<parent>
|
|||
|
<groupId>com.aizuda</groupId>
|
|||
|
<artifactId>snail-job-server</artifactId>
|
|||
|
<version>${revision}</version>
|
|||
|
<relativePath>../pom.xml</relativePath>
|
|||
|
</parent>
|
|||
|
|
|||
|
<artifactId>snail-job-server-ui</artifactId>
|
|||
|
<name>snail-job-server-ui</name>
|
|||
|
<description>snail-job-server-ui</description>
|
|||
|
<packaging>jar</packaging>
|
|||
|
|
|||
|
<properties>
|
|||
|
<java.version>17</java.version>
|
|||
|
<maven.compiler.source>17</maven.compiler.source>
|
|||
|
<maven.compiler.target>17</maven.compiler.target>
|
|||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|||
|
<node.version>v18.20.2</node.version>
|
|||
|
<pnpm.version>9.4.0</pnpm.version>
|
|||
|
</properties>
|
|||
|
|
|||
|
<dependencies>
|
|||
|
<dependency>
|
|||
|
<groupId>org.springframework.boot</groupId>
|
|||
|
<artifactId>spring-boot-starter-web</artifactId>
|
|||
|
<optional>true</optional>
|
|||
|
</dependency>
|
|||
|
</dependencies>
|
|||
|
|
|||
|
<build>
|
|||
|
<plugins>
|
|||
|
<plugin>
|
|||
|
<groupId>org.springframework.boot</groupId>
|
|||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|||
|
<configuration>
|
|||
|
<mainClass>none</mainClass> <!-- 取消查找本项目下的Main方法:为了解决Unable to find main class的问题 -->
|
|||
|
<classifier>execute</classifier> <!-- 为了解决依赖模块找不到此模块中的类或属性 -->
|
|||
|
</configuration>
|
|||
|
<executions>
|
|||
|
<execution>
|
|||
|
<goals>
|
|||
|
<goal>repackage</goal>
|
|||
|
</goals>
|
|||
|
</execution>
|
|||
|
</executions>
|
|||
|
</plugin>
|
|||
|
<plugin>
|
|||
|
<groupId>org.apache.maven.plugins</groupId>
|
|||
|
<artifactId>maven-clean-plugin</artifactId>
|
|||
|
<version>${maven-clean-plugin.version}</version>
|
|||
|
<configuration>
|
|||
|
<filesets>
|
|||
|
<fileset>
|
|||
|
<directory>src/main/frontend/</directory>
|
|||
|
<followSymlinks>false</followSymlinks>
|
|||
|
<includes>
|
|||
|
<include>dist/**</include>
|
|||
|
</includes>
|
|||
|
</fileset>
|
|||
|
</filesets>
|
|||
|
</configuration>
|
|||
|
</plugin>
|
|||
|
<plugin>
|
|||
|
<groupId>com.github.eirslett</groupId>
|
|||
|
<artifactId>frontend-maven-plugin</artifactId>
|
|||
|
<configuration>
|
|||
|
<installDirectory>target</installDirectory>
|
|||
|
<workingDirectory>src/main/frontend</workingDirectory>
|
|||
|
</configuration>
|
|||
|
<executions>
|
|||
|
<execution>
|
|||
|
<id>install node and pnpm</id>
|
|||
|
<goals>
|
|||
|
<goal>install-node-and-pnpm</goal>
|
|||
|
</goals>
|
|||
|
<configuration>
|
|||
|
<nodeVersion>${node.version}</nodeVersion>
|
|||
|
<pnpmVersion>${pnpm.version}</pnpmVersion>
|
|||
|
</configuration>
|
|||
|
</execution>
|
|||
|
<execution>
|
|||
|
<id>pnpm install</id>
|
|||
|
<goals>
|
|||
|
<goal>pnpm</goal>
|
|||
|
</goals>
|
|||
|
<phase>generate-resources</phase>
|
|||
|
<configuration>
|
|||
|
<arguments>install</arguments>
|
|||
|
<pnpmRegistryURL>https://registry.npmmirror.com</pnpmRegistryURL>
|
|||
|
<pnpmInheritsProxyConfigFromMaven>true</pnpmInheritsProxyConfigFromMaven>
|
|||
|
</configuration>
|
|||
|
</execution>
|
|||
|
<execution>
|
|||
|
<id>pnpm build</id>
|
|||
|
<goals>
|
|||
|
<goal>pnpm</goal>
|
|||
|
</goals>
|
|||
|
<phase>generate-resources</phase>
|
|||
|
<configuration>
|
|||
|
<arguments>build</arguments>
|
|||
|
</configuration>
|
|||
|
</execution>
|
|||
|
</executions>
|
|||
|
</plugin>
|
|||
|
</plugins>
|
|||
|
<resources>
|
|||
|
<resource>
|
|||
|
<directory>src/main/frontend/dist</directory>
|
|||
|
<targetPath>admin</targetPath>
|
|||
|
</resource>
|
|||
|
<resource>
|
|||
|
<directory>src/main/resources</directory>
|
|||
|
<includes>
|
|||
|
<include>**/*</include>
|
|||
|
</includes>
|
|||
|
</resource>
|
|||
|
</resources>
|
|||
|
</build>
|
|||
|
<profiles>
|
|||
|
<profile>
|
|||
|
<id>skipFrontend</id>
|
|||
|
<activation>
|
|||
|
<activeByDefault>true</activeByDefault>
|
|||
|
</activation>
|
|||
|
<build>
|
|||
|
<plugins>
|
|||
|
<plugin>
|
|||
|
<groupId>com.github.eirslett</groupId>
|
|||
|
<artifactId>frontend-maven-plugin</artifactId>
|
|||
|
<configuration>
|
|||
|
<skip>true</skip>
|
|||
|
</configuration>
|
|||
|
</plugin>
|
|||
|
</plugins>
|
|||
|
</build>
|
|||
|
</profile>
|
|||
|
</profiles>
|
|||
|
|
|||
|
</project>
|