mirror of
https://gitee.com/ssssssss-team/magic-api.git
synced 2026-05-09 03:46:02 +08:00
88 lines
3.5 KiB
XML
88 lines
3.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>
|
|
<parent>
|
|
<groupId>org.ssssssss</groupId>
|
|
<artifactId>magic-api-plugins</artifactId>
|
|
<version>3.0.0</version>
|
|
</parent>
|
|
<artifactId>magic-api-plugin-rocketmq</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>magic-api-plugin-rocketmq</name>
|
|
<description>magic-api-plugin-rocketmq</description>
|
|
<dependencies>
|
|
<!--rocketmq-->
|
|
<dependency>
|
|
<groupId>org.apache.rocketmq</groupId>
|
|
<artifactId>rocketmq-spring-boot-starter</artifactId>
|
|
<version>2.2.3</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<!-- npm install && npm run build -->
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>1.6.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>exec-npm-install</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<executable>npm</executable>
|
|
<arguments>
|
|
<argument>install</argument>
|
|
</arguments>
|
|
<workingDirectory>${basedir}/src/console</workingDirectory>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>exec-npm-run-build</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>exec</goal>
|
|
</goals>
|
|
<configuration>
|
|
<executable>npm</executable>
|
|
<arguments>
|
|
<argument>run</argument>
|
|
<argument>build</argument>
|
|
</arguments>
|
|
<workingDirectory>${basedir}/src/console</workingDirectory>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
|
|
<plugin>
|
|
<artifactId>maven-resources-plugin</artifactId>
|
|
<version>3.2.0</version>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-resource</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-resources</goal>
|
|
</goals>
|
|
<configuration>
|
|
<outputDirectory>${basedir}/target/classes/magic-editor/plugins</outputDirectory>
|
|
<resources>
|
|
<resource>
|
|
<directory>${basedir}/src/console/dist</directory>
|
|
</resource>
|
|
</resources>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|