mirror of
https://gitee.com/san-bing/JChargePointProtocol
synced 2026-05-04 09:59:55 +08:00
160 lines
6.2 KiB
XML
160 lines
6.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<!--
|
||
|
||
开源代码,仅供学习和交流研究使用,商用请联系三丙
|
||
微信:mohan_88888
|
||
抖音:程序员三丙
|
||
付费课程知识星球:https://t.zsxq.com/aKtXo
|
||
|
||
-->
|
||
<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>
|
||
<groupId>sanbing</groupId>
|
||
<artifactId>jcpp-parent</artifactId>
|
||
<version>1.0.0-SNAPSHOT</version>
|
||
<relativePath>../pom.xml</relativePath>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>jcpp-web-ui</artifactId>
|
||
<packaging>jar</packaging>
|
||
<name>JChargePointProtocol Server Web UI Module</name>
|
||
<description>前端模块</description>
|
||
|
||
<properties>
|
||
<main.dir>${basedir}/..</main.dir>
|
||
</properties>
|
||
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>com.github.eirslett</groupId>
|
||
<artifactId>frontend-maven-plugin</artifactId>
|
||
<configuration>
|
||
<installDirectory>target</installDirectory>
|
||
<workingDirectory>${basedir}</workingDirectory>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<id>install node and npm</id>
|
||
<goals>
|
||
<goal>install-node-and-npm</goal>
|
||
</goals>
|
||
<configuration>
|
||
<nodeVersion>v22.9.0</nodeVersion>
|
||
<npmVersion>10.8.0</npmVersion>
|
||
<nodeDownloadRoot>https://npmmirror.com/mirrors/node/</nodeDownloadRoot>
|
||
</configuration>
|
||
</execution>
|
||
<execution>
|
||
<id>set npm registry</id>
|
||
<goals>
|
||
<goal>npm</goal>
|
||
</goals>
|
||
<configuration>
|
||
<arguments>config set registry https://registry.npmmirror.com</arguments>
|
||
</configuration>
|
||
</execution>
|
||
<execution>
|
||
<id>npm install</id>
|
||
<goals>
|
||
<goal>npm</goal>
|
||
</goals>
|
||
<configuration>
|
||
<arguments>install --no-optional</arguments>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-resources-plugin</artifactId>
|
||
<executions>
|
||
<execution>
|
||
<id>copy-frontend-build</id>
|
||
<phase>compile</phase>
|
||
<goals>
|
||
<goal>copy-resources</goal>
|
||
</goals>
|
||
<configuration>
|
||
<outputDirectory>${project.build.directory}/classes/public</outputDirectory>
|
||
<resources>
|
||
<resource>
|
||
<directory>${basedir}/build</directory>
|
||
<filtering>false</filtering>
|
||
</resource>
|
||
</resources>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
<profiles>
|
||
<profile>
|
||
<id>npm-build</id>
|
||
<activation>
|
||
<activeByDefault>true</activeByDefault>
|
||
</activation>
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>com.github.eirslett</groupId>
|
||
<artifactId>frontend-maven-plugin</artifactId>
|
||
<configuration>
|
||
<installDirectory>target</installDirectory>
|
||
<workingDirectory>${basedir}</workingDirectory>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<id>npm build</id>
|
||
<phase>compile</phase>
|
||
<goals>
|
||
<goal>npm</goal>
|
||
</goals>
|
||
<configuration>
|
||
<arguments>run build</arguments>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</profile>
|
||
<profile>
|
||
<id>npm-start</id>
|
||
<activation>
|
||
<property>
|
||
<name>npm-start</name>
|
||
</property>
|
||
</activation>
|
||
<build>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>com.github.eirslett</groupId>
|
||
<artifactId>frontend-maven-plugin</artifactId>
|
||
<configuration>
|
||
<installDirectory>target</installDirectory>
|
||
<workingDirectory>${basedir}</workingDirectory>
|
||
</configuration>
|
||
<executions>
|
||
<execution>
|
||
<id>npm start</id>
|
||
<goals>
|
||
<goal>npm</goal>
|
||
</goals>
|
||
<configuration>
|
||
<arguments>start</arguments>
|
||
</configuration>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</profile>
|
||
</profiles>
|
||
|
||
</project>
|