Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
524 views

Where can I find a single example expressed in Ivy, Maven, Gant, and Gradle?

I'd like to find a simple, non-trivial Java project that is expressed in terms of Ant + Ivy, Maven, Gant, and Gradle. I'm not interested in each tool's varied sample demos. Where can I find such an ...
5
votes
3answers
611 views

Gradle vs. Gant

I'm working on a Linux/Apache/MySQL/Grails application and have the choice of build tools. I'm looking at Gradle or Gant. They look very similar to me, so I'm not sure what differentiates them. ...
3
votes
4answers
403 views

one-off grails script for populating database

Update: as of Grails 1.3.6 one has access to the full domain from Gant scripts. From the Grails 1.3.6 release notes: You can now run one or more Groovy scripts from the commandline using the ...
3
votes
2answers
271 views

Choosing a scripting/build tool

We are currently working on a project with both actionscript and Java. Up to now, we were using Ant as our main build tool, but the dumb amount of duplication it implies and the lack of flexibility ...
3
votes
2answers
3k views

How to establish a Hibernate session within a grails script

The following grails script: // Import.groovy includeTargets << grailsScript("Bootstrap") target(main: "Import some data...") { depends(bootstrap) def Channel = ...
2
votes
3answers
385 views

Is Gant 100% Ant compatible?

I wrote some Groovy code, and I'd like to integrate it with the existing Java code. We'd like to be able to keep our ant scripts, and only add the needed Groovy functionality. Will Gant allow us to ...
1
vote
1answer
56 views

NoClassDefFoundError when running Gant task from within Ant script

I have an Android build script. It tries to use Gant tasks instead of Ant targets for custom work done on project. The interesting build script's part looks the following way: <taskdef name="gant" ...
1
vote
0answers
144 views

Gant, Groovy scp and Ant

I'm trying to scp a directory to a remote server, but I'm getting this error. Please help Exactly one of [file|localfile|remotefile] or one or more nested filesets is required. ...
1
vote
1answer
513 views

Groovy older version in Grails war

For some reason, 'grails war' is including in "WEB-INF/lib" the 'groovy-1.6.9.jar' and 'groovy-all-1.7.8.jar' files. I'm working with Grails 1.3.7 and when I deploy this war in Tomcat, I receive the ...
1
vote
0answers
127 views

Gant build scripting, how to retrieve a task that I want to execute

This is in grails, but I don't think anything specific to grails applies. I have a Gant script that looks something like this: includeTargets << grailsScript( "Init" ) includeTargets << ...
1
vote
3answers
179 views

How to invoke non default target in grails gant script

I have a gant script A with two targets t1 - default target t2 - another target Even when I run grails A t2 the default target is run? How can I run the non-default target? I have tried grails A ...
1
vote
1answer
108 views

How is Gant able to reference targets by their names, and not get a missing property exception?

In the code presented here: Gant file, there is the following code: target(dist: 'Create release artefacts') { depends(test) depends(jar) } target(run: 'Run the distributed jar') { ...
1
vote
2answers
470 views

Merge Spring and Grails projects

We are developing an backoffice application using Spring and Maven as configuration manager. The project is moreless divided in two parts, and one of this parts is just for manage the data in the DB ...
0
votes
0answers
78 views

zipgroupfileset exclude Attribute does not exclude when used in gant build file

I'm working on a gant target to create a jar file that includes some but not all files from child jars - I do not wish to add files from the META-INF directory of the child jars. However the 'exclude' ...
0
votes
0answers
48 views

SCP not working in Grails script

I'm getting a NPE using the scp optional task for Ant within one of my Grails scripts. The problem seems to be similar to this: http://www.mail-archive.com/user@mojo.codehaus.org/msg01460.html Where ...
0
votes
0answers
28 views

How do I run test-app from within a gant script?

I would like to execute some additional script steps after each test run. So basically, I would like to create a new script in grails which first calls the standard test-app functional:webtest ...
0
votes
1answer
62 views

how to change project name by grails custom script

I want to write a script to change grails project's name. need to modify: .project : Vote -> NewName application.properties : app.name=AMP -> app.name=NewName could anyone show me an example ...
0
votes
0answers
34 views

Could not initialize gant.targets.Clean when using gant as Ant Task

I am trying to build my project using gant through Ant task, without any success so far. My build.gant file is located here and the ant task defined in build.xml is: <project ...
0
votes
1answer
54 views

building project using gant and eclipse

I am looking for a solution to build java project using gant inside eclipse, i searched web but didn't find any thing. May because I am not searching in the right direction because I have no idea ...
0
votes
0answers
33 views

Gant to run grails test-app unit:

How could I create a gant script to run grails test-app unit: before something else happens. Thanks.
0
votes
2answers
111 views

Grails script call my own java classes

I have just created a grails script to create database, but the code is in Java and I thought I could use that in grails script. This is my script import com.test.database.* import ...
0
votes
0answers
126 views

Grails script custom testing classpath

I'm trying to get a custom testing target working in a grails app, and I noticed that using a nested "classpath {}" block doesn't work, but classpathref does. Has anyone else noticed this? It's a huge ...
0
votes
3answers
182 views

Regex to find pairs of strings

I have found this great gant script on http://blog.armbruster-it.de/2010/07/getting-a-list-of-all-i18n-properties-used-in-a-grails-application/ Thanks Stefan! Description: create a list of all i18n ...
0
votes
1answer
300 views

Use Hudson Build Parameter in Grails Build Target

I have created two Hudson String Parameters in my parametrized build configuration: svnRoot, and svnBranch. I can reference these just fine when specifying my Repository URL: ...
0
votes
1answer
91 views

converting gant build scripts into ant scripts

I am pressmuming (without really knowing) that "gant" is superior to "ant", especially when building grails applications. I have some old, inherited, grails apps using ant. Is is possible or easy to ...
0
votes
3answers
119 views

Problem with Gant

I was trying Ant.echo("hello gant") but I am getting this error message: No such property: Ant for class: build Any help would be highly appreciated.
0
votes
1answer
71 views

How to run Gant targets from within a Grails controller?

Suppose I have a block of Gant code: target(echo:"test"){ ant.echo(message:"hi") } setDefaultTarget("echo") This is usually run from a command line. How could I place the block in a Grails ...
0
votes
1answer
205 views

Using (multi lexeme) grails targets in gant scripts

I have a gant script in my grails project. I would like to do something just like this: includeTargets << new File ( "${grailsHome}/scripts/War.groovy" ) war() But for the deploy target in ...
0
votes
1answer
103 views

Ivy/gant include BlazeDS jars that aren`t in a public repo and have no version

Ive been trying to figure out the best way to include the BlazeDS jars in my Gant/Ivy build. Ive been unable to find a public repo for these jars and Im new to ivy. Obviously with Maven youd just do a ...
0
votes
1answer
275 views

How to (ignore|keep going) a gant-build in case of compile errors?

Does anybody know how I can run a gant build which ignores build errors? Something like ant and make are doing with the '-k' or '-keep-going' switch. Thx
-1
votes
1answer
94 views

How to add Root Node to the Tree Panel in extjs 4 mvc

I am having the tree with all my task which gets all the data from the database and i am able to display the data in the treeview panel. Now I want to add Root node dynamically. ie. user when clicks ...