在Eclipse当中使用wro4j-maven-plugin做代码压缩时候出现问题
问题现象:
Plugin execution not covered by lifecycle configuration: ro.isdc.wro4j:wro4j-maven-plugin:1.7.6:run (execution: default, phase: generate-resources) pom.xml /angularjs-security line 85 Maven Project Build Lifecycle Mapping Problem
解决方式:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<!--巴拉巴拉 省略 -->
</plugins>
<!--配置下面代码告诉Eclipse如何编译-->
<!-- configure #!@ m2eclipse -->
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>ro.isdc.wro4j</groupId>
<artifactId>wro4j-maven-plugin</artifactId>
<versionRange>[1.0,]</versionRange>
<goals>
<goal>run</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute>
<runOnIncremental>true</runOnIncremental>
</execute>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
问题研究(这算是一类问题)
since Eclipse is all about incremental building (i.e. builds modified resources as soon as they're saved),
triggering long-running maven plugin every time a file is changed in the workspace would be a disaster. So m2e requires users to be explicit about what maven plugins should be run and when.
As a consequence, in order for these unknown plugins to be run on incremental builds, users need to modify their project pom.xml (or their parent pom.xml) and add a lifecycle-mapping configuration like (in the case of wro4j) :
- See more at: https://developer.jboss.org/en/tools/blog/2012/01/17/css-and-js-minification-using-eclipse-maven-and-wro4j#sthash.7BbFWjdj.dpuf
====================
Enjoy It!
====================
Tobato 2015-05-12
====================
分享到:
相关推荐
maven-for-scala插件,用来解决eclipse/myeclipse scala插件安装后报错的问题: Plugin execution not covered by lifecycle configuration: net.alchim31.maven:scala-maven-plugin:3.2.0:compile (execution: ...
### Maven、Eclipse与Tomcat集成详解 #### Maven概述 Maven是一款强大的自动化构建工具,其设计理念在于通过统一的标准和约定来简化项目管理和构建过程。它主要包括以下几个核心组成部分: 1. **项目对象模型...
Maven生命周期 (Lifecycle) 3.5.3. Maven坐标 (Coordinates) 3.5.4. Maven仓库(Repositories) 3.5.5. Maven依赖管理 (Dependency Management) 3.5.6. 站点生成和报告 (Site Generation and Reporting) 3.6. ...
这个文件通常位于`.m2\repository\org\eclipse\m2e\lifecycle-mapping`目录下,用于告诉Eclipse的Maven插件如何执行特定的Maven目标。例如,你可以在这里定义Eclipse构建时应该执行的Maven目标,以确保Eclipse的构建...
- `<lifecycle-mapping>`: 配置 Eclipse 的生命周期映射,确保 Maven 插件正确地与 Eclipse 的构建过程同步。 - `<pluginExecutions>`: 控制插件的执行方式,这里设置了忽略某些特定的 Maven 插件执行。 - `...
2. **Maven的生命周期(Lifecycle):** - **清理(Clean)**:包括clean阶段,用于删除目标目录,清除上次构建的残留物。 - **构建(Build)**:包括validate、compile、test、package、install和deploy六个阶段...
4. **处理Plugin execution not covered by lifecycle configuration**:这种问题发生在Maven插件执行阶段,解决办法是将`<plugins>`标签放在`<pluginManagement>`标签内,这样可以确保插件配置被正确管理。...
在本文中,我们将深入探讨Maven的配置,包括环境配置、Eclipse中的配置、创建与编译Maven工程以及使用时的注意事项。 ### 一、环境配置 1. **下载和安装**:首先,你需要下载Maven的安装文件,解压后设置`MAVEN_...
Maven插件由一系列生命周期(Lifecycle)、目标(Goal)和配置(Configuration)组成。每个插件可以提供多个目标,并且这些目标可以在不同的生命周期阶段执行。例如,在构建过程中,`maven-compiler-plugin`的`...
- **安装 Eclipse IDE for Java EE Developers**:从 Eclipse 官网下载最新版的 Eclipse 并安装。 - **配置 Maven 环境**:确保系统已正确安装 JDK 和 Maven,然后在 Eclipse 中配置 Maven 环境。 - **创建 Maven ...
注意在IDEA中选择"Lifecycle"中的`install`,这样能确保所有模块的更新同步。 ### `maven install`与`maven package`的区别 1. **maven install**:执行`install`命令,Maven会首先进行编译、测试(除非配置了跳过...
- **maven-eclipse-plugin**:生成Eclipse项目配置文件。 这些插件极大地丰富了Maven的功能,使开发者能够高效地管理和构建Java项目。 总之,Maven 插件是 Maven 构建系统的核心组件,它们扩展了 Maven 的功能,...
See [downloading Spring artifacts][] for Maven repository information. Unable to use Maven or other transitive dependency management tools? See [building a distribution with dependencies][]. ## ...
- 设置IDE:使用Eclipse、IntelliJ IDEA或其他支持Maven的IDE。 - 配置Maven:确保Maven正确安装并配置到IDE中。 - 导入SDK:将SDK项目导入到IDE中,并确保正确配置了依赖关系。 ##### 2. 转换1.2版应用程序至...