Taewoo Kim has submitted this change and it was merged. Change subject: [NO ISSUE] Disable net.revelc.code.formatter on Eclipse ......................................................................
[NO ISSUE] Disable net.revelc.code.formatter on Eclipse - user model changes: no - storage format changes: no - interface changes: no Details: - Disable net.revelc.code.formatter on Eclipse since it doesn't support this plugin. Change-Id: I8748a1a7f15547c1af79ad562016d1671fd86e8f Reviewed-on: https://asterix-gerrit.ics.uci.edu/2340 Reviewed-by: Ian Maxon <[email protected]> Contrib: Ian Maxon <[email protected]> Integration-Tests: Ian Maxon <[email protected]> Tested-by: Ian Maxon <[email protected]> --- M asterixdb/pom.xml M hyracks-fullstack/pom.xml 2 files changed, 26 insertions(+), 0 deletions(-) Approvals: Ian Maxon: Looks good to me, approved; Verified; No violations found; Verified diff --git a/asterixdb/pom.xml b/asterixdb/pom.xml index ec72dec..08781d3 100644 --- a/asterixdb/pom.xml +++ b/asterixdb/pom.xml @@ -417,6 +417,19 @@ <ignore /> </action> </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId>net.revelc.code.formatter</groupId> + <artifactId>formatter-maven-plugin</artifactId> + <versionRange>[2.0.1,)</versionRange> + <goals> + <goal>format</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> diff --git a/hyracks-fullstack/pom.xml b/hyracks-fullstack/pom.xml index a82355d..4538869 100644 --- a/hyracks-fullstack/pom.xml +++ b/hyracks-fullstack/pom.xml @@ -457,6 +457,19 @@ <ignore /> </action> </pluginExecution> + <pluginExecution> + <pluginExecutionFilter> + <groupId>net.revelc.code.formatter</groupId> + <artifactId>formatter-maven-plugin</artifactId> + <versionRange>[2.0.1,)</versionRange> + <goals> + <goal>format</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> -- To view, visit https://asterix-gerrit.ics.uci.edu/2340 To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-MessageType: merged Gerrit-Change-Id: I8748a1a7f15547c1af79ad562016d1671fd86e8f Gerrit-PatchSet: 3 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]>
