diff options
author | Andy Clement <aclement@pivotal.io> | 2019-02-11 11:23:40 -0800 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2019-02-11 11:23:40 -0800 |
commit | bccc86c25ab72358697dc5bc1185fc836d154125 (patch) | |
tree | 9ed26fa32c94bc9bbc10d4812f9e8170eb220c49 | |
parent | de2f7c753232c9bb4c8e602ac841206a0b72260a (diff) | |
download | aspectj-bccc86c25ab72358697dc5bc1185fc836d154125.tar.gz aspectj-bccc86c25ab72358697dc5bc1185fc836d154125.zip |
ignore problematic lifecycle for IDE
-rw-r--r-- | bridge/pom.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/bridge/pom.xml b/bridge/pom.xml index 5d851137e..ee65bfa12 100644 --- a/bridge/pom.xml +++ b/bridge/pom.xml @@ -50,6 +50,43 @@ <filtering>true</filtering> </resource> </resources> + <pluginManagement> + <plugins> + <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId> + org.codehaus.mojo + </groupId> + <artifactId> + build-helper-maven-plugin + </artifactId> + <versionRange> + [1.9.1,) + </versionRange> + <goals> + <goal> + timestamp-property + </goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> |