|
View:
New views
5 Messages
—
Rating Filter:
Alert me
|
|
|
source bundle missing some third party jars?Dear all,
I downloaded the 2.8.2 version source.
I was able to build the sources with ant, as per the docs...
I pulled the sources into eclipse. (Eclipse WTP - version 3.4.1).
Could not create the project from the ant file - "Specified build file does not contain javac task" -
So created it like - "Create a Java Project" -> "Create project from existing source"
However, it reports some libraries as missing:
------------------------------ errors ------------------------------
Project 'CruiseControl' is missing required library: 'lib/junit-3.8.2.jar'
Project 'CruiseControl' is missing required library: 'lib/org.mortbay.jetty.jar'
Project 'CruiseControl' is missing required library: 'lib/saxon8-dom.jar'
Project 'CruiseControl' is missing required library: 'lib/saxon8.jar'
Project 'CruiseControl' is missing required library: 'lib/simian-2.2.14.jar'
------------------------------ errors ------------------------------
Looking into the lib folder - some libraries like saxon9.jar are present - however, the jetty jar is not there...
(org.mortbay.jetty.jar).
Any pointers?
-- - ciao, _ /_| _/ / ( | / (_/ ( export BC_LINE_LENGTH=10000 awk 'BEGIN { for ( i = 1; i <= 999; ++i ) print i }' | paste -s -d '*' | bc | perl -lpe 's/.*?(0+)$/length($1)/e' ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Cruisecontrol-devel mailing list Cruisecontrol-devel@... https://lists.sourceforge.net/lists/listinfo/cruisecontrol-devel |
|
|
Re: source bundle missing some third party jars?Hi all,
I was able to resolve the build errors - I used a home grown script to find the jars - and added these - this involved some guess work - Ideally creating the project from ant build file should have worked - will look into it - and post the findings here.
Here is my classpath file -
<?xml version="1.0" encoding="UTF-8"?>
<classpath> <classpathentry kind="src" path="docs/helloWorld/src"/> <classpathentry kind="src" path="src"/> <classpathentry kind="src" path="target/docs/helloWorld/src"/> <classpathentry kind="src" path="test"/> <classpathentry kind="lib" path="dist/cruisecontrol-antprogresslogger.jar"/> <classpathentry kind="lib" path="dist/cruisecontrol-launcher.jar"/> <classpathentry kind="lib" path="dist/cruisecontrol.jar"/> <classpathentry kind="lib" path="lib/activation.jar"/> <classpathentry kind="lib" path="lib/ant/ant-apache-log4j.jar"/> <classpathentry kind="lib" path="lib/ant/ant-apache-oro.jar"/> <classpathentry kind="lib" path="lib/ant/ant-apache-regexp.jar"/> <classpathentry kind="lib" path="lib/ant/ant-commons-logging.jar"/> <classpathentry kind="lib" path="lib/ant/ant-jdepend.jar"/> <classpathentry kind="lib" path="lib/ant/ant-jsch.jar"/> <classpathentry kind="lib" path="lib/ant/ant-junit.jar"/> <classpathentry kind="lib" path="lib/ant/ant-launcher.jar"/> <classpathentry kind="lib" path="lib/ant/ant-nodeps.jar"/> <classpathentry kind="lib" path="lib/ant/ant-testutil.jar"/> <classpathentry kind="lib" path="lib/ant/ant-trax.jar"/> <classpathentry kind="lib" path="lib/ant/ant.jar"/> <classpathentry kind="lib" path="lib/ant/vizant.jar"/> <classpathentry kind="lib" path="lib/checkstyle-all-4.3.jar"/> <classpathentry kind="lib" path="lib/comm.jar"/> <classpathentry kind="lib" path="lib/commons-net-1.1.0.jar"/> <classpathentry kind="lib" path="lib/commons-validator-1.3.1.jar"/> <classpathentry kind="lib" path="lib/emma_ant.jar"/> <classpathentry kind="lib" path="lib/emma.jar"/> <classpathentry kind="lib" path="lib/fast-md5.jar"/> <classpathentry kind="lib" path="lib/inmemorysfee-1.0.1.jar"/> <classpathentry kind="lib" path="lib/jakarta-oro-2.0.8.jar"/> <classpathentry kind="lib" path="lib/jaxen-1.1-beta-8.jar"/> <classpathentry kind="lib" path="lib/jdom.jar"/> <classpathentry kind="lib" path="lib/log4j.jar"/> <classpathentry kind="lib" path="lib/mail.jar"/> <classpathentry kind="lib" path="lib/maven-embedder-2.0.4-dep.jar"/> <classpathentry kind="lib" path="lib/mx4j-remote.jar"/> <classpathentry kind="lib" path="lib/mx4j-tools.jar"/> <classpathentry kind="lib" path="lib/mx4j.jar"/> <classpathentry kind="lib" path="lib/serializer-2.7.0.jar"/> <classpathentry kind="lib" path="lib/smack.jar"/> <classpathentry kind="lib" path="lib/smackx.jar"/> <classpathentry kind="lib" path="lib/x10.jar"/> <classpathentry kind="lib" path="lib/xercesImpl-2.8.0.jar"/> <classpathentry kind="lib" path="lib/xml-apis-2.8.0.jar"/> <classpathentry kind="lib" path="lib/xmlrpc-2.0.1.jar"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="lib" path="lib/saxon9.jar"/> <classpathentry kind="lib" path="lib/junit-4.4.jar"/> <classpathentry kind="lib" path="lib/saxon9-dom.jar"/> <classpathentry kind="lib" path="lib/ivy-2.0.0-beta2.jar"/> <classpathentry kind="lib" path="C:/downloads/CruiseControl/cruisecontrol-src-2.8.2/cruisecontrol-2.8.2/binaryrelease/lib/jetty-6.1.11.jar"/> <classpathentry kind="lib" path="C:/downloads/CruiseControl/cruisecontrol-src-2.8.2/cruisecontrol-2.8.2/binaryrelease/lib/jetty-util-6.1.11.jar"/> <classpathentry kind="lib" path="lib/commons-httpclient-3.0.1.jar"/> <classpathentry kind="lib" path="lib/xstream-1.2.2.jar"/> <classpathentry kind="lib" path="lib/commons-codec-1.3.jar"/> <classpathentry kind="lib" path="lib/commons-logging.jar"/> <classpathentry kind="lib" path="lib/jug-lgpl-2.0.0.jar"/> <classpathentry kind="lib" path="lib/xpp3_min-1.1.3.4.O.jar"/> <classpathentry kind="output" path="target/test-classes"/> </classpath> --- regards atul
On Fri, Oct 16, 2009 at 5:40 PM, atulDOTkhotATGmailDOTcom <atul.khot@...> wrote:
------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Cruisecontrol-devel mailing list Cruisecontrol-devel@... https://lists.sourceforge.net/lists/listinfo/cruisecontrol-devel |
|
|
Re: source bundle missing some third party jars?Looks like things are fine - I ran the JUnit tests from eclipse - it ran 978 tests out of which only two failed - 976 tests passing is pretty good :-)
--- regards atul
On Fri, Oct 16, 2009 at 5:40 PM, atulDOTkhotATGmailDOTcom <atul.khot@...> wrote:
------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Cruisecontrol-devel mailing list Cruisecontrol-devel@... https://lists.sourceforge.net/lists/listinfo/cruisecontrol-devel |
|
|
Re: source bundle missing some third party jars?But since you're looking to work with the source and make patches I strongly recommend you checkout the latest code from SVN: The 2.8.2 source you're working with was released 9 months ago and we plan on releasing 2.8.3 very soon.
Jtf On Fri, Oct 16, 2009 at 5:47 AM, atulDOTkhotATGmailDOTcom <atul.khot@...> wrote:
-- CITCON Continuous Integration and Testing Conference http://www.citconf.com/ ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Cruisecontrol-devel mailing list Cruisecontrol-devel@... https://lists.sourceforge.net/lists/listinfo/cruisecontrol-devel |
|
|
Re: source bundle missing some third party jars?Thanks Jtf - I downloaded the latest code and pulled the main project into eclipse. I got 17 errors - Adding some missing jars, it worked...
Next, I ran the tests - out of 997 tests, I got 2 errors - and 1 failure.
I will study the failing test and update it here... --- cheerio atul
On Fri, Oct 16, 2009 at 8:52 PM, Jeffrey Fredrick <jeffrey.fredrick@...> wrote:
------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Cruisecontrol-devel mailing list Cruisecontrol-devel@... https://lists.sourceforge.net/lists/listinfo/cruisecontrol-devel |
| Free embeddable forum powered by Nabble | Forum Help |