Re: dependencies not used for groovyc

2010-02-24 Thread Peter Schröder
maybe there is some other problem, but i don't know where to look. i added some more logging and the groovy compiler seems to get all the information needed: ant.taskdef :classpath [/Users/peterschroder/.m2/repository/org/codehaus/groovy/groovy/1.5.3/groovy-1.5.3.jar,

generate geronimo-application.xml during EAR packaging?

2010-02-24 Thread Will Rogers
Buildr's EAR packaging automatically generates an application.xml and includes it in the output's META-INF directory. I would like to do something similar to generate a geronimo-application.xml for inclusion in the EAR. I can handle the actual file generation part, but I'm not sure how/where to

Re: dzone

2010-02-24 Thread Will Rogers
On Sat, Jan 23, 2010 at 12:25 PM, Alex Boisvert alex.boisv...@gmail.com wrote: solid.  Whitelisting dependencies has worked very well for many of us on big projects and is probably an under-appreciated feature. What does whitelisting dependencies mean? I have jumped into a project at the deep

extracting jars from zip

2010-02-24 Thread Adam Crain
Hi, First, thanks for the help last week in getting buildr installed with gem 1.3.6 and nice tool! I've now successfully gotten quite of bit working with a mixed java/scala set of projects. I am now trying to get a non-maven artifact dependency setup against a downloaded zip file and am having

Re: generate geronimo-application.xml during EAR packaging?

2010-02-24 Thread Alex Boisvert
On Wed, Feb 24, 2010 at 8:37 AM, Will Rogers wjrog...@gmail.com wrote: Buildr's EAR packaging automatically generates an application.xml and includes it in the output's META-INF directory. I would like to do something similar to generate a geronimo-application.xml for inclusion in the EAR. I

Re: extracting jars from zip

2010-02-24 Thread Alex Boisvert
Yeah, I think this is the same issue I hit when I was trying your code last week. Try adding, artifact(...).enhance qpid_client_jar It looks like from(...) doesn't properly wire the dependency to the task but to the path it generates, so this is a workaround until that issue is fixed. alex On

Re: generate geronimo-application.xml during EAR packaging?

2010-02-24 Thread Will Rogers
Thanks, that should help me get there. Related follow-up question: it looks like I need to specify one of the libs I'm packaging in my EAR as a module/connector in the application.xml. Can I add arbitrary elements to Buildr's application.xml output? Should I give up on the auto-EAR packaging and

Re: generate geronimo-application.xml during EAR packaging?

2010-02-24 Thread Alex Boisvert
On Wed, Feb 24, 2010 at 12:19 PM, Will Rogers wjrog...@gmail.com wrote: Thanks, that should help me get there. Welcome! Related follow-up question: it looks like I need to specify one of the libs I'm packaging in my EAR as a module/connector in the application.xml. Can I add arbitrary

Re: generate geronimo-application.xml during EAR packaging?

2010-02-24 Thread Will Rogers
On Wed, Feb 24, 2010 at 3:50 PM, Alex Boisvert alex.boisv...@gmail.com wrote: Related follow-up question: it looks like I need to specify one of the libs I'm packaging in my EAR as a module/connector in the application.xml. Can I add arbitrary elements to Buildr's application.xml output?

packing scala projects == different than java?

2010-02-24 Thread Adam Crain
I have a 3 project buildfile... a scala executable that depends on two jars. I am successfully running the scala tests now for project 'fep' But I can't get the custom task :run to work because project 'fep' won't package into a jar like 'fepproto' and 'javadnp3'. Any ideas what it's not packaging

Re: packing scala projects == different than java?

2010-02-24 Thread Rhett Sutphin
Hi Adam, On Feb 24, 2010, at 4:33 PM, Adam Crain wrote: I have a 3 project buildfile... a scala executable that depends on two jars. I am successfully running the scala tests now for project 'fep' But I can't get the custom task :run to work because project 'fep' won't package into a jar