From continuum-commits-return-1333-apmail-maven-continuum-commits-archive=maven.apache.org@maven.apache.org Mon Dec 05 21:43:28 2005 Return-Path: Delivered-To: apmail-maven-continuum-commits-archive@www.apache.org Received: (qmail 5471 invoked from network); 5 Dec 2005 21:43:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Dec 2005 21:43:27 -0000 Received: (qmail 64119 invoked by uid 500); 5 Dec 2005 21:43:26 -0000 Delivered-To: apmail-maven-continuum-commits-archive@maven.apache.org Received: (qmail 63950 invoked by uid 500); 5 Dec 2005 21:43:25 -0000 Mailing-List: contact continuum-commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: continuum-dev@maven.apache.org Delivered-To: mailing list continuum-commits@maven.apache.org Received: (qmail 63750 invoked by uid 99); 5 Dec 2005 21:43:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Dec 2005 13:43:24 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 05 Dec 2005 13:43:23 -0800 Received: (qmail 5310 invoked by uid 65534); 5 Dec 2005 21:43:03 -0000 Message-ID: <20051205214303.5309.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r354199 - /maven/continuum/trunk/README.txt Date: Mon, 05 Dec 2005 21:43:03 -0000 To: continuum-commits@maven.apache.org From: evenisse@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: evenisse Date: Mon Dec 5 13:42:59 2005 New Revision: 354199 URL: http://svn.apache.org/viewcvs?rev=354199&view=rev Log: PR: CONTINUUM-499 Submitted by: Andreas Hoheneder Update for README.txt with an hands on chapter for including the Sun jars into the m2 repository Modified: maven/continuum/trunk/README.txt Modified: maven/continuum/trunk/README.txt URL: http://svn.apache.org/viewcvs/maven/continuum/trunk/README.txt?rev=354199&r1=354198&r2=354199&view=diff ============================================================================== --- maven/continuum/trunk/README.txt (original) +++ maven/continuum/trunk/README.txt Mon Dec 5 13:42:59 2005 @@ -1,3 +1,31 @@ +Getting Sun Jars +---------------- +Some jar files can not distributed via http://www.ibiblio.org/maven2 +(see http://maven.apache.org/guides/mini/guide-coping-with-sun-jars.html for further information). + +As this project depends on them, following procedure might be a prerequisite to starting the +build (It has to be done only for the local repository and only once): + +make an empty directory and download the jars from following urls: +http://java.sun.com/j2ee/connector/download.html (Version 1.0) +http://java.sun.com/products/jta (Version 1.0.1B) +http://java.sun.com/products/jaas/index-10.html (Version 1.0.01) +http://java.sun.com/products/javamail/downloads/index.html (Version 1.3.2) +http://java.sun.com/products/javabeans/glasgow/jaf.html (Version 1.0.2) +http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html (Some new and shiny version, then select ojdbc14.jar) + +Change into the directiory and execute following commands: + +mvn install:install-file -Dfile=connector.jar -DgroupId=javax.resource -DartifactId=connector -Dversion=1.0 -Dpackaging=jar +mvn install:install-file -Dfile=jta-1_0_1B-classes.zip -DgroupId=javax.transaction -DartifactId=jta -Dversion=1.0.1B -Dpackaging=jar +mvn install:install-file -Dfile=jaas-1_0_01.zip -DgroupId=javax.security -DartifactId=jaas -Dversion=1.0.01 -Dpackaging=jar +mvn install:install-file -Dfile=mail.jar -DgroupId=javax.mail -DartifactId=mail -Dversion=1.3.2 -Dpackaging=jar +mvn install:install-file -Dfile=activation.jar -DgroupId=javax.activation -DartifactId=activation -Dversion=1.0.2 -Dpackaging=jar +mvn install:install-file -Dfile=ojdbc14.jar -DgroupId=ojdbc -DartifactId=ojdbc -Dversion=14 -Dpackaging=jar + +This fills the jars into your local repository (the poms are comming from ibiblio. Above urls are copied from the pom files, +if you get stuck have a look at them, there might be a hint in there). + Building on Unix ----------------