Re: Jenkins does not understand netbeans j2se-project namespace

2012-09-28 Thread Kayode Odeyemi
On Fri, Sep 28, 2012 at 12:38 PM, Richard Lavoie
wrote:

> Did you put the netbeans ant jars in your jenkins ant lib folder ?
>
> I'm pretty sure those tasks/namespaces are not published by ant but are
> extensions developped by netbeans.
>

Thanks for the pointer Richard.

This blog post was helpful:
http://www.rekk.de/bloggy/2008/adaptation-of-netbeans-ant-build-for-integration-copylibs-issue/


Jenkins does not understand netbeans j2se-project namespace

2012-09-28 Thread Kayode Odeyemi


Hi all,

I'm creating a build job using the Ant task below;

http://www.netbeans.org/ns/j2se-project/1"; 
xmlns:j2seproject3="http://www.netbeans.org/ns/j2se-project/3"; name="pcdn-core" 
default="default" basedir=".">
Builds, tests, and runs the project pcdn-core.






























To run this application from the command line 
without Ant, try:






java -cp "${run.classpath.with.dist.jar}" 
${main.class}
















To run this application from the command line 
without Ant, try:

java -jar "${dist.jar.resolved}"














However, I'm surprised that Jenkins cannot parse j2se-project namespace from 
Netbeans.

/var/lib/jenkins/jobs/pcdnmgt core build/workspace/build.xml:257: Problem: 
failed to create task or type http://www.netbeans.org/ns/j2se-project/1:jar

Any ideas on this will be greatly appreciated.

Thanks



Structuring builds for a large project

2012-09-22 Thread Kayode Odeyemi
Hello all,

We are working on a large project which have been categorized into 
different modules and libraries. Currently we have decided to use CI and of 
course Jenkins, but we are stuck on how to structure these builds.  Our 
modular architecture has the following structure:


   - core
   - management
   - scripts
   - services
   - server
   - integration


The project is flexible enough for developers to write in different 
languages they are comfortable with. This hence requires different builds 
and package structure.

I'll appreciate ideas and suggestions on how to layout the build jobs.

Kind regards