Setup Dev system with IntelliJ IDEA

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
9 messages Options
Reply | Threaded
Open this post in threaded view
|

Setup Dev system with IntelliJ IDEA

Clifford Williams
Please bare with me as we are a group of old school guys trying to move into this arena.

I have tried to setup a dev system using IntelliJ but I keep failing at the Gradle configuration. So apparently I am missing something.

Thanks in advance,

Cliff
Reply | Threaded
Open this post in threaded view
|

Re: Setup Dev system with IntelliJ IDEA

taher
Hi Cliff,

We did not yet integrate Gradle with Intellij but it is relatively easy.
You can get more information here ->
https://docs.gradle.org/3.3/userguide/idea_plugin.html

This would be a good area to start working on.

Regards,

Taher Alkhateeb

On Wed, Feb 8, 2017 at 4:33 PM, Clifford Williams <
[hidden email]> wrote:

> Please bare with me as we are a group of old school guys trying to move
> into this arena.
>
> I have tried to setup a dev system using IntelliJ but I keep failing at
> the Gradle configuration. So apparently I am missing something.
>
> Thanks in advance,
>
> Cliff
>
Reply | Threaded
Open this post in threaded view
|

Re: Setup Dev system with IntelliJ IDEA

Clifford Williams
Thank you, Tahar.

On Feb 09, 2017, at 02:14 AM, Taher Alkhateeb <[hidden email]> wrote:

Hi Cliff,

We did not yet integrate Gradle with Intellij but it is relatively easy.
You can get more information here ->
https://docs.gradle.org/3.3/userguide/idea_plugin.html

This would be a good area to start working on.

Regards,

Taher Alkhateeb

On Wed, Feb 8, 2017 at 4:33 PM, Clifford Williams <
[hidden email]> wrote:

Please bare with me as we are a group of old school guys trying to move
into this arena.

I have tried to setup a dev system using IntelliJ but I keep failing at
the Gradle configuration. So apparently I am missing something.

Thanks in advance,

Cliff

Reply | Threaded
Open this post in threaded view
|

Re: Setup Dev system with IntelliJ IDEA

Clifford Williams
In reply to this post by taher
Tahar, once I figured out how to properly set my JAVA_HOME for the JDK this was very simple to implement. 

Thank you for pointing me in the right direction.

On Feb 09, 2017, at 02:14 AM, Taher Alkhateeb <[hidden email]> wrote:

Hi Cliff,

We did not yet integrate Gradle with Intellij but it is relatively easy.
You can get more information here ->
https://docs.gradle.org/3.3/userguide/idea_plugin.html

This would be a good area to start working on.

Regards,

Taher Alkhateeb

On Wed, Feb 8, 2017 at 4:33 PM, Clifford Williams <
[hidden email]> wrote:

Please bare with me as we are a group of old school guys trying to move
into this arena.

I have tried to setup a dev system using IntelliJ but I keep failing at
the Gradle configuration. So apparently I am missing something.

Thanks in advance,

Cliff

Reply | Threaded
Open this post in threaded view
|

Re: Setup Dev system with IntelliJ IDEA

Pierre Smits
Hi Clifford,

Maybe you can write some setup tips for develops starting or switching to
the IntelliJ dev tool?

Best regards,

Pierre

On Friday, February 10, 2017, Clifford Williams <[hidden email]>
wrote:

> Tahar, once I figured out how to properly set my JAVA_HOME for the JDK
> this was very simple to implement.
>
> Thank you for pointing me in the right direction.
>
> On Feb 09, 2017, at 02:14 AM, Taher Alkhateeb <[hidden email]
> <javascript:_e(%7B%7D,'cvml','[hidden email]');>> wrote:
>
> Hi Cliff,
>
> We did not yet integrate Gradle with Intellij but it is relatively easy.
> You can get more information here ->
> https://docs.gradle.org/3.3/userguide/idea_plugin.html
>
> This would be a good area to start working on.
>
> Regards,
>
> Taher Alkhateeb
>
> On Wed, Feb 8, 2017 at 4:33 PM, Clifford Williams <
> [hidden email]
> <javascript:_e(%7B%7D,'cvml','[hidden email]');>> wrote:
>
> Please bare with me as we are a group of old school guys trying to move
>
> into this arena.
>
>
> I have tried to setup a dev system using IntelliJ but I keep failing at
>
> the Gradle configuration. So apparently I am missing something.
>
>
> Thanks in advance,
>
>
> Cliff
>
>
>

--
Pierre Smits

ORRTIZ.COM <http://www.orrtiz.com>
OFBiz based solutions & services

OFBiz Extensions Marketplace
http://oem.ofbizci.net/oci-2/
Reply | Threaded
Open this post in threaded view
|

Re: Setup Dev system with IntelliJ IDEA

taher
In reply to this post by Clifford Williams
Glad you got it working :)

On Feb 10, 2017 8:04 PM, "Clifford Williams" <[hidden email]>
wrote:

> Tahar, once I figured out how to properly set my JAVA_HOME for the JDK
> this was very simple to implement.
>
> Thank you for pointing me in the right direction.
>
> On Feb 09, 2017, at 02:14 AM, Taher Alkhateeb <[hidden email]>
> wrote:
>
> Hi Cliff,
>
> We did not yet integrate Gradle with Intellij but it is relatively easy.
> You can get more information here ->
> https://docs.gradle.org/3.3/userguide/idea_plugin.html
>
> This would be a good area to start working on.
>
> Regards,
>
> Taher Alkhateeb
>
> On Wed, Feb 8, 2017 at 4:33 PM, Clifford Williams <
> [hidden email]> wrote:
>
> Please bare with me as we are a group of old school guys trying to move
>
> into this arena.
>
>
> I have tried to setup a dev system using IntelliJ but I keep failing at
>
> the Gradle configuration. So apparently I am missing something.
>
>
> Thanks in advance,
>
>
> Cliff
>
>
>
Reply | Threaded
Open this post in threaded view
|

Re: Setup Dev system with IntelliJ IDEA

Jacopo Cappellato-5
In reply to this post by Clifford Williams
Hi Clifford,

here is how I usually configure IntelliJ for OFBiz with Gradle:

1) checkout the project using svn from the command line
2) Start IntelliJ and select New Project From Existing Sources...
3) Select the Gradle option
4) Then select the Gradle Wrapper mode (default); in this screen make sure
you select Java 8 (for this to appear, you have to properly set your
environment outside of IntelliJ)
5) when prompted, select all the modules and also keep the root module

After that you can use Gradle from IntelliJ.

I hope it helps,

Jacopo

On Fri, Feb 10, 2017 at 6:04 PM, Clifford Williams <
[hidden email]> wrote:

> Tahar, once I figured out how to properly set my JAVA_HOME for the JDK
> this was very simple to implement.
>
> Thank you for pointing me in the right direction.
>
> On Feb 09, 2017, at 02:14 AM, Taher Alkhateeb <[hidden email]>
> wrote:
>
> Hi Cliff,
>
> We did not yet integrate Gradle with Intellij but it is relatively easy.
> You can get more information here ->
> https://docs.gradle.org/3.3/userguide/idea_plugin.html
>
> This would be a good area to start working on.
>
> Regards,
>
> Taher Alkhateeb
>
> On Wed, Feb 8, 2017 at 4:33 PM, Clifford Williams <
> [hidden email]> wrote:
>
> Please bare with me as we are a group of old school guys trying to move
>
> into this arena.
>
>
> I have tried to setup a dev system using IntelliJ but I keep failing at
>
> the Gradle configuration. So apparently I am missing something.
>
>
> Thanks in advance,
>
>
> Cliff
>
>
>
Reply | Threaded
Open this post in threaded view
|

Re: Setup Dev system with IntelliJ IDEA

james yong
In reply to this post by Pierre Smits
Hi Pierre,

Info for setting up Intellij IDEA is now available at https://cwiki.apache.org/confluence/display/OFBIZ/Setup+Intellij+IDEA+IDE+for+OFBiz+Framework

Regards,
James

Pierre Smits wrote
Hi Clifford,

Maybe you can write some setup tips for develops starting or switching to
the IntelliJ dev tool?

Best regards,

Pierre

On Friday, February 10, 2017, Clifford Williams <[hidden email]>
wrote:

> Tahar, once I figured out how to properly set my JAVA_HOME for the JDK
> this was very simple to implement.
>
> Thank you for pointing me in the right direction.
>
> On Feb 09, 2017, at 02:14 AM, Taher Alkhateeb <[hidden email]
> <javascript:_e(%7B%7D,'cvml','[hidden email]');>> wrote:
>
> Hi Cliff,
>
> We did not yet integrate Gradle with Intellij but it is relatively easy.
> You can get more information here ->
> https://docs.gradle.org/3.3/userguide/idea_plugin.html
>
> This would be a good area to start working on.
>
> Regards,
>
> Taher Alkhateeb
>
> On Wed, Feb 8, 2017 at 4:33 PM, Clifford Williams <
> [hidden email]
> <javascript:_e(%7B%7D,'cvml','[hidden email]');>> wrote:
>
> Please bare with me as we are a group of old school guys trying to move
>
> into this arena.
>
>
> I have tried to setup a dev system using IntelliJ but I keep failing at
>
> the Gradle configuration. So apparently I am missing something.
>
>
> Thanks in advance,
>
>
> Cliff
>
>
>

--
Pierre Smits

ORRTIZ.COM <http://www.orrtiz.com>
OFBiz based solutions & services

OFBiz Extensions Marketplace
http://oem.ofbizci.net/oci-2/
Reply | Threaded
Open this post in threaded view
|

Re: Setup Dev system with IntelliJ IDEA

Jacques Le Roux
Administrator
I also put a link from the FAQ page

https://cwiki.apache.org/confluence/display/OFBIZ/FAQ+-+Tips+-+Tricks+-+Cookbook+-+HowTo#FAQ-Tips-Tricks-Cookbook-HowTo-IntellijIDEAIDE

Jacques


Le 10/03/2017 à 06:49, james yong a écrit :

> Hi Pierre,
>
> Info for setting up Intellij IDEA is now available at
> https://cwiki.apache.org/confluence/display/OFBIZ/Setup+Intellij+IDEA+IDE+for+OFBiz+Framework
> <https://cwiki.apache.org/confluence/display/OFBIZ/Setup+Intellij+IDEA+IDE+for+OFBiz+Framework>
>
> Regards,
> James
>
>
> Pierre Smits wrote
>> Hi Clifford,
>>
>> Maybe you can write some setup tips for develops starting or switching to
>> the IntelliJ dev tool?
>>
>> Best regards,
>>
>> Pierre
>>
>> On Friday, February 10, 2017, Clifford Williams &lt;
>> cliffwilliams44@
>> &gt;
>> wrote:
>>
>>> Tahar, once I figured out how to properly set my JAVA_HOME for the JDK
>>> this was very simple to implement.
>>>
>>> Thank you for pointing me in the right direction.
>>>
>>> On Feb 09, 2017, at 02:14 AM, Taher Alkhateeb &lt;
>> slidingfilaments@
>> &gt; &lt;javascript:_e(%7B%7D,'cvml','
>> slidingfilaments@
>> ');&gt;> wrote:
>>> Hi Cliff,
>>>
>>> We did not yet integrate Gradle with Intellij but it is relatively easy.
>>> You can get more information here ->
>>> https://docs.gradle.org/3.3/userguide/idea_plugin.html
>>>
>>> This would be a good area to start working on.
>>>
>>> Regards,
>>>
>>> Taher Alkhateeb
>>>
>>> On Wed, Feb 8, 2017 at 4:33 PM, Clifford Williams <
>>>
>> cliffwilliams44@
>>> &lt;javascript:_e(%7B%7D,'cvml','
>> cliffwilliams44@
>> ');&gt;> wrote:
>>> Please bare with me as we are a group of old school guys trying to move
>>>
>>> into this arena.
>>>
>>>
>>> I have tried to setup a dev system using IntelliJ but I keep failing at
>>>
>>> the Gradle configuration. So apparently I am missing something.
>>>
>>>
>>> Thanks in advance,
>>>
>>>
>>> Cliff
>>>
>>>
>>>
>> --
>> Pierre Smits
>>
>> ORRTIZ.COM &lt;http://www.orrtiz.com&gt;
>> OFBiz based solutions & services
>>
>> OFBiz Extensions Marketplace
>> http://oem.ofbizci.net/oci-2/
>
>
>
>
> --
> View this message in context: http://ofbiz.135035.n4.nabble.com/Setup-Dev-system-with-IntelliJ-IDEA-tp4702136p4703118.html
> Sent from the OFBiz - User mailing list archive at Nabble.com.
>