vitamins-admin-web
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.krproject.ocean.vitamins</groupId>
<artifactId>vitamins-admin-web</artifactId>
<version>2.5.0</version>
</dependency><?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>org.krproject.ocean.vitamins</groupId> <artifactId>vitamins</artifactId> <version>2.5.0</version> <relativePath>..</relativePath> <!-- lookup parent from repository --> </parent> <artifactId>vitamins-admin-web</artifactId> <description>后台管理前端模块</description> <properties> <maven.install.skip>true</maven.install.skip> <maven.deploy.skip>true</maven.deploy.skip> </properties> <build> <plugins> <!-- exec maven plugin for npm --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <configuration> <installDirectory>target</installDirectory> <workingDirectory>src/main/static/</workingDirectory> </configuration> <executions> <execution> <id>npm install</id> <goals> <goal>exec</goal> </goals> <phase>prepare-package</phase> <configuration> <executable>npm</executable> <arguments> <argument>install</argument> <argument>--silent</argument> </arguments> </configuration> </execution> <execution> <id>npm publish</id> <goals> <goal>exec</goal> </goals> <phase>deploy</phase> <configuration> <executable>npm</executable> <arguments> <argument>publish</argument> </arguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>