From: <id...@us...> - 2006-05-15 12:49:55
|
Revision: 3 Author: idueppe Date: 2006-05-15 05:49:27 -0700 (Mon, 15 May 2006) ViewCVS: http://svn.sourceforge.net/openuss/?rev=3&view=rev Log Message: ----------- setup openuss 3.0 subversion trunk Added Paths: ----------- trunk/openuss/tools/ trunk/openuss/tools/missing-dependencies/ trunk/openuss/tools/missing-dependencies/install-missing.xml trunk/openuss/tools/missing-dependencies/javax.transaction/ trunk/openuss/tools/missing-dependencies/javax.transaction/jta-1.0.1B.jar trunk/openuss/tools/missing-dependencies/jaybird/ trunk/openuss/tools/missing-dependencies/jaybird/jaybird-2.0.1.jar trunk/openuss/tools/missing-dependencies/jaybird/jaybird-2.0.1.rar trunk/openuss/tools/missing-dependencies/jaybird/jaybird-full-2.0.1.jar trunk/openuss/tools/missing-dependencies/jaybird/jaybird-pool-2.0.1.jar trunk/openuss/tools/missing-dependencies/readme.txt Added: trunk/openuss/tools/missing-dependencies/install-missing.xml =================================================================== --- trunk/openuss/tools/missing-dependencies/install-missing.xml (rev 0) +++ trunk/openuss/tools/missing-dependencies/install-missing.xml 2006-05-15 12:49:27 UTC (rev 3) @@ -0,0 +1,26 @@ +<project name="install-mising-files" default="install-all" basedir="."> + <target name="install-all"> + <antcall target="jaybird"/> + <antcall target="jta"/> + </target> + <target name="jaybird"> + <exec executable="mvn.bat"> + <arg value="install:install-file"/> + <arg value="-Dfile=./jaybird/jaybird-full-2.0.1.jar"/> + <arg value="-DgroupId=jaybird"/> + <arg value="-DartifactId=jaybird-full"/> + <arg value="-Dversion=2.0.1"/> + <arg value="-Dpackaging=jar"/> + </exec> + </target> + <target name="jta"> + <exec executable="mvn.bat"> + <arg value="install:install-file"/> + <arg value="-Dfile=./javax.transaction/jta-1.0.1B.jar"/> + <arg value="-DgroupId=javax.transaction"/> + <arg value="-DartifactId=jtal"/> + <arg value="-Dversion=1.0.1B"/> + <arg value="-Dpackaging=jar"/> + </exec> + </target> +</project> Added: trunk/openuss/tools/missing-dependencies/javax.transaction/jta-1.0.1B.jar =================================================================== (Binary files differ) Property changes on: trunk/openuss/tools/missing-dependencies/javax.transaction/jta-1.0.1B.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-2.0.1.jar =================================================================== (Binary files differ) Property changes on: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-2.0.1.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-2.0.1.rar =================================================================== (Binary files differ) Property changes on: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-2.0.1.rar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-full-2.0.1.jar =================================================================== (Binary files differ) Property changes on: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-full-2.0.1.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-pool-2.0.1.jar =================================================================== (Binary files differ) Property changes on: trunk/openuss/tools/missing-dependencies/jaybird/jaybird-pool-2.0.1.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/openuss/tools/missing-dependencies/readme.txt =================================================================== --- trunk/openuss/tools/missing-dependencies/readme.txt (rev 0) +++ trunk/openuss/tools/missing-dependencies/readme.txt 2006-05-15 12:49:27 UTC (rev 3) @@ -0,0 +1,11 @@ +The libraries in this folder can't be find within public remote repositories. +There for this libraries have to be copied manualy to your local repository. + +----------------------------------------------------------------------------- +Jaybird +Jaybird 2.0.1 is not deployed to remote repositories + +Sun Microsystems - Java Transaction API +Due to license restrictions this jar is not deployed to public repositories. + +----------------------------------------------------------------------------- This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |