You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@turbine.apache.org by Jason van Zyl <jv...@zenplex.com> on 2002/04/10 13:54:40 UTC

Re: Mave jars-install.list not present?

On Wed, 2002-04-10 at 08:53, Christian Willy Asmussen wrote:
> This is my first experience with maven.  I am following the web reference on
> how to build maven.  It fails :-(
> 
> I had a look at mavens build-bootstrap.xml.  
> On line 264:
> <get-list
>      list="jars-install.list"
>      dest="${lib.repo}"
>      baseUrl="${get.jars.baseUrl}/"
> />
> 
> I don't see the jars-install.list anywhere.  Is this correct?  the
> update-jars target doesn't seem to get anything. Look:

That file has been in there for 10 hours, you might have tried to build
it while I was updating.

http://cvs.apache.org/viewcvs/jakarta-turbine-maven/jars.list?rev=1.1&content-type=text/vnd.viewcvs-markup
 
> [krico@chewbacca jakarta-turbine-maven]$ ant -f build-bootstrap.xml
> update-jars   
> Buildfile: build-bootstrap.xml
> 
> update-jars:
>    [delete] Deleting directory /opt/krico/jakarta-turbine-maven/bootstrap
>    [mkdir] Created dir: /opt/krico/jakarta-turbine-maven/bootstrap
>    [javac] Compiling 1 source file to
> /opt/krico/jakarta-turbine-maven/bootstrap
> 
> BUILD SUCCESSFUL
> 
> 
> ?? Did I get something wrong?
> 
> -- 
> There is no limit to what you can do
> if you don't care who gets the credit.
>  - Keynote
> 
> --
> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> For additional commands, e-mail: <ma...@jakarta.apache.org>
-- 
jvz.

Jason van Zyl
jvanzyl@apache.org

http://tambora.zenplex.org


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: Mave jars-install.list not present?

Posted by Christian Willy Asmussen <kr...@kriconet.com.br>.
On Wed, Apr 10, 2002 at 10:05:39AM -0300, Christian Willy Asmussen wrote:
> On Wed, Apr 10, 2002 at 07:54:40AM -0400, Jason van Zyl wrote:
> > On Wed, 2002-04-10 at 08:53, Christian Willy Asmussen wrote:
> > > This is my first experience with maven.  I am following the web reference on
> > > how to build maven.  It fails :-(
> > > 
> > > I had a look at mavens build-bootstrap.xml.  
> > > On line 264:
> > > <get-list
> > >      list="jars-install.list"
> > >      dest="${lib.repo}"
> > >      baseUrl="${get.jars.baseUrl}/"
> > > />
> > > 
> > > I don't see the jars-install.list anywhere.  Is this correct?  the
> > > update-jars target doesn't seem to get anything. Look:
> > 
> > That file has been in there for 10 hours, you might have tried to build
> > it while I was updating.
> > 
> > http://cvs.apache.org/viewcvs/jakarta-turbine-maven/jars.list?rev=1.1&content-type=text/vnd.viewcvs-markup
> 
> Sorry, I think I'm getting this wrong.  the file used is jars-install.list
> (typo?)

I even tryied to use jar.list (ie: ln -s jars.list jars-install.list) and it
didn't work (something is still missing?):

compile:
   [delete] Deleting directory /opt/krico/jakarta-turbine-maven/bootstrap
   [mkdir] Created dir: /opt/krico/jakarta-turbine-maven/bootstrap
   [javac] Compiling 29 source files to
/opt/krico/jakarta-turbine-maven/bootstrap
   [javac] 
   /opt/krico/jakarta-turbine-maven/src/java/org/apache/maven/XmlPomValidator.java:63:
   cannot resolve symbol
   [javac] symbol  : class Attributes  
   [javac] location: package sax
   [javac] import org.xml.sax.Attributes;
   [javac]                    ^
   [javac]
/opt/krico/jakarta-turbine-maven/src/java/org/apache/maven/XmlPomValidator.java:68:
cannot resolve symbol
    [javac] symbol  : class XMLReader  
    [javac] location: package sax
    [javac] import org.xml.sax.XMLReader;
    [javac]                    ^
    [javac]
/opt/krico/jakarta-turbine-maven/src/java/org/apache/maven/XmlPomValidator.java:70:
cannot resolve symbol
    [javac] symbol  : class DefaultHandler  
    [javac] location: package helpers
    [javac] import org.xml.sax.helpers.DefaultHandler;
    [javac]                            ^
    [javac]
/opt/krico/jakarta-turbine-maven/src/java/org/apache/maven/XmlPomFormatter.java:95:
cannot access org.xml.sax.helpers.XMLFilterImpl
    [javac] file org/xml/sax/helpers/XMLFilterImpl.class not found
    [javac]         XMLWriter writer = new XMLWriter(out, format);
    [javac]                            ^
    [javac]
/opt/krico/jakarta-turbine-maven/src/java/org/apache/maven/XmlPomValidator.java:150:
cannot resolve symbol
    [javac] symbol  : class XMLReader  
    [javac] location: class org.apache.maven.XmlPomValidator
    [javac]             XMLReader parser = (XMLReader)
Class.forName(parserName).newInstance();
    [javac]             ^
    [javac]
/opt/krico/jakarta-turbine-maven/src/java/org/apache/maven/XmlPomValidator.java:150:
cannot resolve symbol
    [javac] symbol  : class XMLReader  
    [javac] location: class org.apache.maven.XmlPomValidator
    [javac]             XMLReader parser = (XMLReader)
Class.forName(parserName).newInstance();
    [javac]                                 ^
    [javac] 6 errors
	
BUILD FAILED
	

-- 
There is no limit to what you can do
if you don't care who gets the credit.
 - Keynote

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: Mave jars-install.list not present?

Posted by Jason van Zyl <jv...@zenplex.com>.
On Wed, 2002-04-10 at 09:05, Christian Willy Asmussen wrote:
> On Wed, Apr 10, 2002 at 07:54:40AM -0400, Jason van Zyl wrote:
> > On Wed, 2002-04-10 at 08:53, Christian Willy Asmussen wrote:
> > > This is my first experience with maven.  I am following the web reference on
> > > how to build maven.  It fails :-(
> > > 
> > > I had a look at mavens build-bootstrap.xml.  
> > > On line 264:
> > > <get-list
> > >      list="jars-install.list"
> > >      dest="${lib.repo}"
> > >      baseUrl="${get.jars.baseUrl}/"
> > > />
> > > 
> > > I don't see the jars-install.list anywhere.  Is this correct?  the
> > > update-jars target doesn't seem to get anything. Look:
> > 
> > That file has been in there for 10 hours, you might have tried to build
> > it while I was updating.
> > 
> > http://cvs.apache.org/viewcvs/jakarta-turbine-maven/jars.list?rev=1.1&content-type=text/vnd.viewcvs-markup
> 
> Sorry, I think I'm getting this wrong.  the file used is jars-install.list
> (typo?)

Yup, you are right. The typo was my fault in the build-bootstrap.xml
file. Fixed.

There is also a maven mailing list:

http://jakarta.apache.org/turbine/maven/mail-lists.html
 

-- 
jvz.

Jason van Zyl
jvanzyl@apache.org

http://tambora.zenplex.org


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: Mave jars-install.list not present?

Posted by Christian Willy Asmussen <kr...@kriconet.com.br>.
On Wed, Apr 10, 2002 at 07:54:40AM -0400, Jason van Zyl wrote:
> On Wed, 2002-04-10 at 08:53, Christian Willy Asmussen wrote:
> > This is my first experience with maven.  I am following the web reference on
> > how to build maven.  It fails :-(
> > 
> > I had a look at mavens build-bootstrap.xml.  
> > On line 264:
> > <get-list
> >      list="jars-install.list"
> >      dest="${lib.repo}"
> >      baseUrl="${get.jars.baseUrl}/"
> > />
> > 
> > I don't see the jars-install.list anywhere.  Is this correct?  the
> > update-jars target doesn't seem to get anything. Look:
> 
> That file has been in there for 10 hours, you might have tried to build
> it while I was updating.
> 
> http://cvs.apache.org/viewcvs/jakarta-turbine-maven/jars.list?rev=1.1&content-type=text/vnd.viewcvs-markup

Sorry, I think I'm getting this wrong.  the file used is jars-install.list
(typo?)


>  
> > [krico@chewbacca jakarta-turbine-maven]$ ant -f build-bootstrap.xml
> > update-jars   
> > Buildfile: build-bootstrap.xml
> > 
> > update-jars:
> >    [delete] Deleting directory /opt/krico/jakarta-turbine-maven/bootstrap
> >    [mkdir] Created dir: /opt/krico/jakarta-turbine-maven/bootstrap
> >    [javac] Compiling 1 source file to
> > /opt/krico/jakarta-turbine-maven/bootstrap
> > 
> > BUILD SUCCESSFUL
> > 
> > 
> > ?? Did I get something wrong?
> > 
> > -- 
> > There is no limit to what you can do
> > if you don't care who gets the credit.
> >  - Keynote
> > 
> > --
> > To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> > For additional commands, e-mail: <ma...@jakarta.apache.org>
> -- 
> jvz.
> 
> Jason van Zyl
> jvanzyl@apache.org
> 
> http://tambora.zenplex.org
> 
> 
> --
> To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
> For additional commands, e-mail: <ma...@jakarta.apache.org>
> 

-- 
There is no limit to what you can do
if you don't care who gets the credit.
 - Keynote

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>