本文介紹了Maven忽略maven-前端-plugin,沒(méi)有錯(cuò)誤的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!
問(wèn)題描述
<build>
<pluginManagement>
<plugins>
<!-- Plugin to execute command "npm install" and "npm run build" inside /angular directory -->
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>0.0.22</version>
<configuration>
<skip>false</skip>
<workingDirectory>${basedir}</workingDirectory>
<installDirectory>${basedir}/temp</installDirectory>
</configuration>
<executions>
<!-- It will install nodejs and npm -->
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<configuration>
<nodeVersion>v6.3.1</nodeVersion>
<npmVersion>3.9.5</npmVersion>
</configuration>
</execution>
<!-- It will execute command "npm install" inside "/angular" directory -->
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>bower install</id>
<goals>
<goal>bower</goal>
</goals>
<phase>generate-sources</phase>
<configuration>
<arguments>
<argument>install</argument>
</arguments>
<workingDirectory>${basedir}</workingDirectory>
</configuration>
</execution>
</executions>
</plugin>
<!-- Plugin to copy the content of /angular/dist/ directory to output directory (ie/ /target/transactionManager-1.0/) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.2</version>
<executions>
<execution>
<id>default-copy-resources</id>
<phase>process-resources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<overwrite>true</overwrite>
<outputDirectory>${basedir}/target/classes/static/app/bower_components</outputDirectory>
<resources>
<resource>
<directory>${basedir}/src/main/resources/static/app/bower_components</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</pluginManagement>
</build>
使用此構(gòu)建配置,我不知道為什么maven看起來(lái)完全不執(zhí)行frontend-maven-plugin
。
我可以通過(guò)命令提示符成功運(yùn)行bower install
,它會(huì)下載依賴(lài)項(xiàng)。
但我不能使用Maven Build來(lái)做同樣的事情。
我嘗試了不同版本的Front-maven-plugin,但無(wú)法運(yùn)行此插件。還嘗試了其他可能的Web解決方案。
我在進(jìn)行maven構(gòu)建時(shí)沒(méi)有收到任何有關(guān)此插件的錯(cuò)誤或信息。
有人能幫我嗎?
推薦答案
您的插件位于<pluginManagement>
標(biāo)記內(nèi),請(qǐng)嘗試刪除這些標(biāo)記。
發(fā)件人Maven Documentation:
pluginManagement:是一個(gè)可以在插件旁邊看到的元素。
插件管理以大致相同的方式包含插件元素,
不同的是,不是為這個(gè)配置插件信息
特定的項(xiàng)目生成,它用于配置項(xiàng)目生成
都是從這個(gè)繼承下來(lái)的。但是,這僅配置了以下插件
實(shí)際上是在plugins元素中引用的,或者
在當(dāng)前的POM中。孩子們完全有權(quán)推翻
插件管理定義。
這意味著我認(rèn)為您的插件只是被傳遞給您(不存在的)孩子,而不是實(shí)際使用。
這篇關(guān)于Maven忽略maven-前端-plugin,沒(méi)有錯(cuò)誤的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,