Hi, I have a big download directory where al the sun stuff resides. When a dependency is not on ibiblio, most of the time it is concerning jars from sun, so I just add the group directory in my local repository (eg /opt/mavenjars/jaxrpc and rename the jar to have the "mavenized" version number in there (the artifectId). That's it :) At first it takes some time to get everything into your local repository, but before you know it, you just need to update new versions..
Mvgr, Martin On Mon, 2003-12-08 at 18:09, J�rg Schaible wrote: > Hi, > > it took some time, but lastly I got the demo of jelly-tags-soap running. The example > suffers from the missing jars of Sun on the ibiblio server and was not updated after > jelly.jar was separated. I've added a diff below, but the basic question is, what to > do with the jars of Sun? I've setup an own repository on my server with the jars > from the new j2ee 1.4, but I have no real idea for a general solution (therefore I > did not open a JIRA issue). What have other projects done using the Maven > dependencies and relying on some jars of Sun? > > Regards, > J�rg > > $ cvs diff -u project.xml > Index: project.xml > =================================================================== > RCS file: /home/cvspublic/jakarta-commons/jelly/jelly-tags/soap/project.xml,v > retrieving revision 1.5 > diff -u -r1.5 project.xml > --- project.xml 27 Jan 2003 05:24:15 -0000 1.5 > +++ project.xml 8 Dec 2003 17:03:24 -0000 > @@ -30,18 +30,42 @@ > </dependency> > > <dependency> > + <groupId>commons-jelly</groupId> > + <artifactId>commons-jelly-tags-log</artifactId> > + <version>SNAPSHOT</version> > + </dependency> > + > + <dependency> > <id>axis</id> > <version>1.0</version> > </dependency> > > <dependency> > - <id>jaxrpc</id> > - <version>1.0</version> > + <groupId>jaxrpc</groupId> > + <artifactId>jaxrpc-api</artifactId> > + <version>1.1</version> > + </dependency> > + <dependency> > + <groupId>jaxrpc</groupId> > + <artifactId>jaxrpc-impl</artifactId> > + <version>1.1</version> > </dependency> > + <dependency> > + <groupId>jaxrpc</groupId> > + <artifactId>jax-qname</artifactId> > + <version>1.1</version> > + </dependency> > + > > <dependency> > - <id>saaj</id> > - <version>1.1</version> > + <groupId>saaj</groupId> > + <artifactId>saaj-api</artifactId> > + <version>1.2</version> > + </dependency> > + <dependency> > + <groupId>saaj</groupId> > + <artifactId>saaj-impl</artifactId> > + <version>1.2</version> > </dependency> > > <!-- START for running demos --> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] -- Martin van den Bemt <[EMAIL PROTECTED]> mvdb.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
