Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 93953 invoked from network); 23 Nov 2002 02:12:12 -0000 Received: from unknown (HELO nagoya.betaversion.org) (192.18.49.131) by daedalus.apache.org with SMTP; 23 Nov 2002 02:12:12 -0000 Received: (qmail 16722 invoked by uid 97); 23 Nov 2002 02:13:17 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@jakarta.apache.org Received: (qmail 16679 invoked by uid 97); 23 Nov 2002 02:13:16 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 16668 invoked by uid 97); 23 Nov 2002 02:13:15 -0000 X-Antivirus: nagoya (v4218 created Aug 14 2002) Date: 23 Nov 2002 02:12:03 -0000 Message-ID: <20021123021203.46469.qmail@icarus.apache.org> From: craigmcc@apache.org To: jakarta-commons-sandbox-cvs@apache.org Subject: cvs commit: jakarta-commons-sandbox/scaffold/src/java/org/apache/commons/scaffold/sql CommandStore.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N craigmcc 2002/11/22 18:12:02 Modified: scaffold build.xml scaffold/src/java/org/apache/commons/scaffold/sql CommandStore.java Added: scaffold .cvsignore build.properties.sample scaffold/src/conf MANIFEST.MF Log: With Ted's permission, remodel the build.xml file to conform to the conventions of non-Mavenized commons projects. Explicitly declare dependencies (with replaceable parameters) in "build.xml" with sample definitions in "build.properties.sample". Add a manifest file to the generated JAR file. Fix a mis-named package declaration in CommandStore. There are still a bunch of warnings from Javadoc, but those can be dealt with separately. Revision Changes Path 1.6 +134 -88 jakarta-commons-sandbox/scaffold/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/scaffold/build.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- build.xml 21 Nov 2002 02:08:54 -0000 1.5 +++ build.xml 23 Nov 2002 02:12:02 -0000 1.6 @@ -1,127 +1,173 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + + + + + + + + - - - - - - - + + + + - - - - - - - - - - - + + - - - - - - - + + + - - - - - - - + + + - - - 1.1 jakarta-commons-sandbox/scaffold/.cvsignore Index: .cvsignore =================================================================== dist target 1.1 jakarta-commons-sandbox/scaffold/build.properties.sample Index: build.properties.sample =================================================================== # build.properties.sample -- Sample build.properties for "scaffold" # $Id: build.properties.sample,v 1.1 2002/11/23 02:12:02 craigmcc Exp $ # Commons Packages commons.home=../../jakarta-commons commons-beanutils.jar=${commons.home}/beanutils/dist/commons-beanutils.jar commons-digester.jar=${commons.home}/beanutils/dist/commons-digester.jar # JDBC 2.0 Standard Extensions (javax.sql) JAR File jdbc20ext.jar=/classes/jdbc20ext.jar # Lucene (Version 1.2 or later). For more informaiton, see # . lucene.home=/usr/local/lucene-1.2 lucene.jar=${lucene.home}/lucene-1.2.jar # MockObjects (Version 0.07 or later). For more information, see # . The "mockobjects-core.jar" property # should point at the core JAR file from the MockObjects distribution, # while the "mockobjects-j2ee.jar" property should point at the appropriate # JAR file for the combination of J2SE and J2EE level you are using. The # example below would be for J2EE 1.3 (i.e. Servlet 2.3 and JSP 1.2) running # in conjunction with J2SE 1.4. mockobjects.home=/usr/local/mockobjects-0.07 mockobjects-core.jar=${mockobjects.home}/mockobjects-0.07-core.jar mockobjects-j2ee.jar=${mockobjects.home}/mockobjects-0.07-j1.4-j2ee1.3.jar # PoolMan (version 2.0.4 or later). For more information, see # . poolman.home=/usr/local/poolman-2.0.4 poolman.jar=${poolman.home}/lib/poolman.jar # Servlet 2.3 / JSP 1.2 API Classes servlet.jar=/classes/servlet.jar 1.1 jakarta-commons-sandbox/scaffold/src/conf/MANIFEST.MF Index: MANIFEST.MF =================================================================== Extension-Name: org.apache.commons.@name@ Specification-Vendor: Apache Software Foundation Specification-Version: 1.0 Implementation-Vendor: Apache Software Foundation Implementation-Version: @version@ 1.3 +4 -3 jakarta-commons-sandbox/scaffold/src/java/org/apache/commons/scaffold/sql/CommandStore.java Index: CommandStore.java =================================================================== RCS file: /home/cvs/jakarta-commons-sandbox/scaffold/src/java/org/apache/commons/scaffold/sql/CommandStore.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- CommandStore.java 16 Aug 2002 22:28:24 -0000 1.2 +++ CommandStore.java 23 Nov 2002 02:12:02 -0000 1.3 @@ -1,8 +1,9 @@ -package org.apache.commons.scaffold.util; +package org.apache.commons.scaffold.sql; import java.util.Properties; import org.apache.commons.scaffold.lang.PropertiesException; +import org.apache.commons.scaffold.util.ResourceUtils; /** @@ -77,4 +78,4 @@ } -} \ No newline at end of file +} -- To unsubscribe, e-mail: For additional commands, e-mail: