Taewoo Kim has submitted this change and it was merged. Change subject: Ignore the license-automation-plugin on Eclipse ......................................................................
Ignore the license-automation-plugin on Eclipse - Ignore a newly added license-automation-plugin on Eclipse since it can't be executed properly on Eclipse. - This patch is uploaded to reflect the location change of the license-automation-plugin from asterix to hyracks. Change-Id: Ic183db2429763dbcca68a0bb6d7242a375ab8746 Reviewed-on: https://asterix-gerrit.ics.uci.edu/1446 Reviewed-by: Ian Maxon <[email protected]> Sonar-Qube: Jenkins <[email protected]> Tested-by: Jenkins <[email protected]> --- M asterixdb/asterix-client-helper/pom.xml M asterixdb/asterix-installer/pom.xml M asterixdb/asterix-server/pom.xml M asterixdb/asterix-yarn/pom.xml 4 files changed, 34 insertions(+), 6 deletions(-) Approvals: Ian Maxon: Looks good to me, approved Jenkins: Verified; No violations found diff --git a/asterixdb/asterix-client-helper/pom.xml b/asterixdb/asterix-client-helper/pom.xml index defb488..a20d4e1 100644 --- a/asterixdb/asterix-client-helper/pom.xml +++ b/asterixdb/asterix-client-helper/pom.xml @@ -140,6 +140,34 @@ </configuration> </plugin> </plugins> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.apache.hyracks</groupId> + <artifactId>license-automation-plugin</artifactId> + <versionRange>${hyracks.version}</versionRange> + <goals> + <goal>generate</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore /> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + </plugins> + </pluginManagement> </build> <dependencies> <dependency> diff --git a/asterixdb/asterix-installer/pom.xml b/asterixdb/asterix-installer/pom.xml index d0b84ae..496ff8c 100644 --- a/asterixdb/asterix-installer/pom.xml +++ b/asterixdb/asterix-installer/pom.xml @@ -281,9 +281,9 @@ <pluginExecutions> <pluginExecution> <pluginExecutionFilter> - <groupId>org.apache.asterix</groupId> + <groupId>org.apache.hyracks</groupId> <artifactId>license-automation-plugin</artifactId> - <versionRange>${project.version}</versionRange> + <versionRange>${hyracks.version}</versionRange> <goals> <goal>generate</goal> </goals> diff --git a/asterixdb/asterix-server/pom.xml b/asterixdb/asterix-server/pom.xml index de2e5e4..31778ba 100644 --- a/asterixdb/asterix-server/pom.xml +++ b/asterixdb/asterix-server/pom.xml @@ -365,9 +365,9 @@ <pluginExecutions> <pluginExecution> <pluginExecutionFilter> - <groupId>org.apache.asterix</groupId> + <groupId>org.apache.hyracks</groupId> <artifactId>license-automation-plugin</artifactId> - <versionRange>${project.version}</versionRange> + <versionRange>${hyracks.version}</versionRange> <goals> <goal>generate</goal> </goals> diff --git a/asterixdb/asterix-yarn/pom.xml b/asterixdb/asterix-yarn/pom.xml index 32c33fb..29b3edb 100644 --- a/asterixdb/asterix-yarn/pom.xml +++ b/asterixdb/asterix-yarn/pom.xml @@ -229,9 +229,9 @@ <pluginExecutions> <pluginExecution> <pluginExecutionFilter> - <groupId>org.apache.asterix</groupId> + <groupId>org.apache.hyracks</groupId> <artifactId>license-automation-plugin</artifactId> - <versionRange>${project.version}</versionRange> + <versionRange>${hyracks.version}</versionRange> <goals> <goal>generate</goal> </goals> -- To view, visit https://asterix-gerrit.ics.uci.edu/1446 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: merged Gerrit-Change-Id: Ic183db2429763dbcca68a0bb6d7242a375ab8746 Gerrit-PatchSet: 2 Gerrit-Project: asterixdb Gerrit-Branch: master Gerrit-Owner: Taewoo Kim <[email protected]> Gerrit-Reviewer: Ian Maxon <[email protected]> Gerrit-Reviewer: Jenkins <[email protected]> Gerrit-Reviewer: Taewoo Kim <[email protected]>
