我使用maven将角应用程序与java结合起来。POM的一部分看起来像这样
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.5.0</version>
<executions>
<execution>
<id>exec-npm-install</id>
<phase>generate-sources</phase>
<configuration>
<workingDirectory>${project.basedir}/src/main/angular-app</workingDirectory>
<executable>npm.cmd</executable>
<arguments>
<argument>install</argument>
</arguments>
</configuration>
<goals>
<goal>exec</goal>
</goals>
</execution>
<execution>
<id>exec-npm-ng-build</id>
<phase>generate-sources</phase>
<configuration>
<workingDirectory>${project.basedir}/src/main/angular-app</workingDirectory>
<executable>ng.cmd</executable>
<arguments>
<argument>build</argument>
<argument>--base-href=/testangularmaven/src/main/webapp/angular_build/</argument>
</arguments>
</configuration>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
</plugin>
mvn包运行良好,项目在war文件中编译,但eclipse表示pom不正确。使用标签的解决方案pluginManagement不匹配,因为它不会执行命令。如何解决eclipse的问题?
通过映射解决
<?xml version="1.0" encoding="UTF-8"?>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<versionRange>[1.5.0,)</versionRange>
<goals>
<goal>exec</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
在eclipse中导入Maven项目时,我遇到了上面的错误。我对这些技术还不熟悉,所以说不通。 请看一下POM。XML。 完整错误显示为:生命周期配置未涵盖插件执行:org。科德豪斯。gmaven:groovy maven插件:2.1.1:execute(执行:网页包,阶段:流程资源) maven项目构建生命周期映射问题
我正在日蚀中构建PageTurner。并将其与Maven和ActionBarSherlcok集成。但是我在POM. xml中得到了这个单一的错误。 生命周期配置未涵盖插件执行:com。乱穿马路。专家插件。Android第二代:android maven插件:3.6.1:生成源代码(执行:默认-生成源代码,阶段:生成源代码)
需要以下Eclipse m2e问题的帮助: 生命周期配置未涵盖插件执行:com。谷歌。appengine:appengine maven插件:1.8.3:endpoints\u get\u discovery\u doc(执行:默认,阶段:编译) 有什么想法吗?pom。xml看起来像:https://github.com/GoogleCloudPlatform/appengine-endpoint
升级到Eclipse Luna或m2e 1.5后。Eclipse抱怨说,在打开一个带有Maven插件项目的现有工作区时
我正在使用m2e构建一个java项目。我需要使用JAVA版本1.6。所以我正在尝试配置toolchains插件来实现它。请参阅以下链接。 https://maven.apache.org/guides/mini/guide-using-toolchains.html 但是在日食中,它抛出了下面的错误。 插件执行不包括在生命周期配置中:org.apache.maven。插件:maven toolch
在Eclipse中,我试图导入一个运行在Websphere Application Server上的现有Maven项目。(我在eclipse中部署了websphere liberty配置文件服务器) 我的pom.xml它给了我以下错误 jacoco-maven-plugin导致站点插件在多模块项目中失败