groove eclipse plugin

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

groove eclipse plugin

BJ Freeman

is it any advantage in writing scripts for ofbiz?

=========================
BJ Freeman
http://bjfreeman.elance.com
Strategic Power Office with Supplier Automation <http://www.businessesnetwork.com/automation/viewforum.php?f=93>
Specialtymarket.com <http://www.specialtymarket.com/>

Systems Integrator-- Glad to Assist

Chat  Y! messenger: bjfr33man
Linkedin
<http://www.linkedin.com/profile?viewProfile=&key=1237480&locale=en_US&trk=tab_pro>


Reply | Threaded
Open this post in threaded view
|

Re: groove eclipse plugin

Jacques Le Roux
Administrator
I use it but I did not find much, maybe some syntax coloration, not even sure

Jacques

From: "BJ Freeman" <[hidden email]>

> is it any advantage in writing scripts for ofbiz?
>
> =========================
> BJ Freeman
> http://bjfreeman.elance.com
> Strategic Power Office with Supplier Automation <http://www.businessesnetwork.com/automation/viewforum.php?f=93>
> Specialtymarket.com <http://www.specialtymarket.com/>
>
> Systems Integrator-- Glad to Assist
>
> Chat  Y! messenger: bjfr33man
> Linkedin
> <http://www.linkedin.com/profile?viewProfile=&key=1237480&locale=en_US&trk=tab_pro>
>
>

Reply | Threaded
Open this post in threaded view
|

Re: groove eclipse plugin

James McGill-5
On Mon, May 17, 2010 at 2:40 PM, Jacques Le Roux <
[hidden email]> wrote:

> I use it but I did not find much, maybe some syntax coloration, not even
> sure
>
> Jacques
>

I've tried to use it, but it really doesn't do the things I want an IDE to
do, such as completing class member names.

I get more utility out of Vim, for Froovy and for freemarker templates.

The FTL plugin for Eclipse tended to crash on me, with the slightest error
in the document.


James
Reply | Threaded
Open this post in threaded view
|

Re: groove eclipse plugin

David E. Jones-2

On May 17, 2010, at 3:49 PM, James McGill wrote:

> On Mon, May 17, 2010 at 2:40 PM, Jacques Le Roux <
> [hidden email]> wrote:
>
>> I use it but I did not find much, maybe some syntax coloration, not even
>> sure
>>
>> Jacques
>>
>
> I've tried to use it, but it really doesn't do the things I want an IDE to
> do, such as completing class member names.
>
> I get more utility out of Vim, for Froovy and for freemarker templates.
>
> The FTL plugin for Eclipse tended to crash on me, with the slightest error
> in the document.

I've been trying the community (free) edition of IntelliJ IDEA for Groovy, XML, and other types of files used in OFBiz and it does a pretty good job. It's not open source, but it is at least free.

-David

Reply | Threaded
Open this post in threaded view
|

Re: groove eclipse plugin

Adrian Crum
In reply to this post by James McGill-5
On 5/17/2010 2:49 PM, James McGill wrote:
> The FTL plugin for Eclipse tended to crash on me, with the slightest error
> in the document.

You need to keep the FreeMarker jar updated in your Eclipse plugin
folder. Just copy the latest jar over the old one.

-Adrian
Reply | Threaded
Open this post in threaded view
|

Re: groove eclipse plugin

BJ Freeman
In reply to this post by BJ Freeman
ok I found a klutzy way.

click on groovy.ui.GroovyMain and do a
run
put in the arguments for the script of file
per below.

you can also do this from a command line as long as the files and jar
are local with no eclipse
java -jar [path from were you are to groovy.jar]groovy.jar
groovy.ui.GroovyMain


error: neither -e or filename provided
usage: groovy [options] [args]
options:
  -p                               process files line by line and print
result
                                   (see also -n)
  -D,--define <name=value>         define a system property
  -a,--autosplit <splitPattern>    split lines using splitPattern
(default '\s')
                                   using implicit 'split' variable
  -c,--encoding <charset>          specify the encoding of the files
  -d,--debug                       debug mode will print out full stack
traces
  -e <script>                      specify a command line script
  -h,--help                        usage information
  -i <extension>                   modify files in place; create backup if
                                   extension is given (e.g. '.bak')
  -l <port>                        listen on a port and process inbound
lines
  -n                               process files line by line using implicit
                                   'line' variable
  -v,--version                     display the Groovy and JVM versions


=========================
BJ Freeman
http://bjfreeman.elance.com
Strategic Power Office with Supplier Automation <http://www.businessesnetwork.com/automation/viewforum.php?f=93>
Specialtymarket.com <http://www.specialtymarket.com/>

Systems Integrator-- Glad to Assist

Chat  Y! messenger: bjfr33man
Linkedin
<http://www.linkedin.com/profile?viewProfile=&key=1237480&locale=en_US&trk=tab_pro>


Jacques Le Roux sent the following on 5/17/2010 2:40 PM:

> I use it but I did not find much, maybe some syntax coloration, not even
> sure
>
> Jacques
>
> From: "BJ Freeman" <[hidden email]>
>> is it any advantage in writing scripts for ofbiz?
>>
>> =========================
>> BJ Freeman
>> http://bjfreeman.elance.com
>> Strategic Power Office with Supplier Automation
>> <http://www.businessesnetwork.com/automation/viewforum.php?f=93>
>> Specialtymarket.com <http://www.specialtymarket.com/>
>>
>> Systems Integrator-- Glad to Assist
>>
>> Chat  Y! messenger: bjfr33man
>> Linkedin
>> <http://www.linkedin.com/profile?viewProfile=&key=1237480&locale=en_US&trk=tab_pro>
>>
>>
>>
>
>


Reply | Threaded
Open this post in threaded view
|

Re: groove eclipse plugin

Jacques Le Roux
Administrator
Ha yes, I forgot this one. But I never used it so far

Jacques

From: "BJ Freeman" <[hidden email]>

> ok I found a klutzy way.
>
> click on groovy.ui.GroovyMain and do a
> run
> put in the arguments for the script of file
> per below.
>
> you can also do this from a command line as long as the files and jar
> are local with no eclipse
> java -jar [path from were you are to groovy.jar]groovy.jar
> groovy.ui.GroovyMain
>
>
> error: neither -e or filename provided
> usage: groovy [options] [args]
> options:
>  -p                               process files line by line and print
> result
>                                   (see also -n)
>  -D,--define <name=value>         define a system property
>  -a,--autosplit <splitPattern>    split lines using splitPattern
> (default '\s')
>                                   using implicit 'split' variable
>  -c,--encoding <charset>          specify the encoding of the files
>  -d,--debug                       debug mode will print out full stack
> traces
>  -e <script>                      specify a command line script
>  -h,--help                        usage information
>  -i <extension>                   modify files in place; create backup if
>                                   extension is given (e.g. '.bak')
>  -l <port>                        listen on a port and process inbound
> lines
>  -n                               process files line by line using implicit
>                                   'line' variable
>  -v,--version                     display the Groovy and JVM versions
>
>
> =========================
> BJ Freeman
> http://bjfreeman.elance.com
> Strategic Power Office with Supplier Automation <http://www.businessesnetwork.com/automation/viewforum.php?f=93>
> Specialtymarket.com <http://www.specialtymarket.com/>
>
> Systems Integrator-- Glad to Assist
>
> Chat  Y! messenger: bjfr33man
> Linkedin
> <http://www.linkedin.com/profile?viewProfile=&key=1237480&locale=en_US&trk=tab_pro>
>
>
> Jacques Le Roux sent the following on 5/17/2010 2:40 PM:
>> I use it but I did not find much, maybe some syntax coloration, not even
>> sure
>>
>> Jacques
>>
>> From: "BJ Freeman" <[hidden email]>
>>> is it any advantage in writing scripts for ofbiz?
>>>
>>> =========================
>>> BJ Freeman
>>> http://bjfreeman.elance.com
>>> Strategic Power Office with Supplier Automation
>>> <http://www.businessesnetwork.com/automation/viewforum.php?f=93>
>>> Specialtymarket.com <http://www.specialtymarket.com/>
>>>
>>> Systems Integrator-- Glad to Assist
>>>
>>> Chat  Y! messenger: bjfr33man
>>> Linkedin
>>> <http://www.linkedin.com/profile?viewProfile=&key=1237480&locale=en_US&trk=tab_pro>
>>>
>>>
>>>
>>
>>
>
>