Re: Setting up Calcite development with Eclipse

2018-03-30 Thread Julian Hyde
FWIW, I use intellij for editing java but I’ve never tried to set up the checkstyle plugin. If have a lot of checkstyle errors to fix I run ‘mvn verify validate’ in an emacs compilation buffer, and it parses the messages for me. > On Mar 30, 2018, at 12:22 PM, Michael Mior wrote: > > Unfortuna

Re: Setting up Calcite development with Eclipse

2018-03-30 Thread Michael Mior
Unfortunately, I just use vim for editing so I can't be much help here. Hopefully someone else can chime in with some advice. -- Michael Mior mm...@apache.org 2018-03-30 14:29 GMT-04:00 Muhammad Gelbana : > Configuring checkstyle IntelliJ's plugin keeps showing errors while > attempting to compi

Re: Setting up Calcite development with Eclipse

2018-03-30 Thread Muhammad Gelbana
Configuring checkstyle IntelliJ's plugin keeps showing errors while attempting to compile the *src/main/config/checkstyle/checker.xml* file. First, it complained it couldn't find the *FileContentsHolder* module, which turns out to have been renamed to *FileHolder*. Second, it required moving the *

Re: Setting up Calcite development with Eclipse

2018-03-26 Thread Michael Mior
Currently, we only have published guides for IntelliJ and NetBeans which you can find here https://calcite.apache.org/docs/howto.html#setting-up-an-ide-for-contributing -- Michael Mior mm...@apache.org 2018-03-25 16:33 GMT-04:00 Muhammad Gelbana : > Is the Eclipse IDE setup guide complete somew

Re: Setting up Calcite development with Eclipse

2018-03-25 Thread Muhammad Gelbana
Is the Eclipse IDE setup guide complete somewhere ? I couldn't find it on the web and after following the guides in this thread, I still face numerous build errors in Eclipse. Thanks, Gelbana On Sat, Feb 10, 2018 at 12:56 AM, Edmon Begoli wrote: > Does anyone have a checkstyle file for Calcite

Re: Setting up Calcite development with Eclipse

2018-02-09 Thread Edmon Begoli
Does anyone have a checkstyle file for Calcite for Eclipse to share via gist, so we can include it as part of the instructions. Alternatively, is there an easy way to turn some or all checks off? It looks that project import is dying on checkstyle. On Thu, Feb 8, 2018 at 16:04 Julian Hyde wrote

Re: Setting up Calcite development with Eclipse

2018-02-08 Thread Julian Hyde
Here is a suggestion for how to organize this. Avoid the temptation to write a long list of instructions that anticipates everything that can go wrong. Write a much shorter, simpler account that will work for 90% of people 90% of the time. Then have a separate entry in the same HOWTO dealing wit

Re: Setting up Calcite development with Eclipse

2018-02-08 Thread Edmon Begoli
Good suggestions. I do think that some tools come with extra gotchas, so if we are to lower the barrier to entry for Calcite contribution, I would strive to minimize the struggles. I sort of taken this initiative on my own to help with a technical and instruction writing. IntelliJ tips I got were

Re: Setting up Calcite development with Eclipse

2018-02-08 Thread ptr.bo...@gmail.com
First thing first - install maven as an external tool. Then point your Eclipse to use it.Just as the your looking results suggest :) My personal opinion about the case is that this is not the problem of setting up calcite with any IDE to have working build/run/debug/test commands but rather effect

Re: Setting up Calcite development with Eclipse

2018-02-08 Thread Edmon Begoli
I am on Maven 3.5 and Eclipse Oxygen .2 I did mvn eclipse:eclipse. Then "open existing project -> open" Chose the specialized imports and selected "Maven -> import maven project" and selected root directory name, chose the Maven source. At the attempt of import, I got: No marketplace entries fo

Re: Setting up Calcite development with Eclipse

2018-02-08 Thread Josh Elser
I've chased these down a few times on Avatica and other projects. In general, you shouldn't have to invoke the eclipse:eclipse mojo directly to import to modern versions of Eclipse. You should just be able to import it as a Maven project. If that fails, it's something we can/should fix in Calc

Re: Setting up Calcite development with Eclipse

2018-02-07 Thread Malcolm Taylor
This worked for me: 1) fork the calcite repository on github 2) clone your fork 3) mvn -version (make sure you have Maven 3.5.2, if not then upgrade) 4) mvn eclipse:eclipse 5) start eclipse, Import existing projects into workspace On 8 February 2018 at 02:20, Edmon Begoli wrote: > Does anyone ha

Setting up Calcite development with Eclipse

2018-02-07 Thread Edmon Begoli
Does anyone have instructions how to setup Eclipse for Calcite development? I would like to document that for CALCITE-2172 while I am at it.