As long as we don't any sources in the .jar (I hate it when that happens!), I'm perfectly okay on this. It shouldn't really affect people that don't want the source (downloads are relatively small) and projects that use the dists will just include the jars anyway.
so, +1 on having combined binary+source distribution for individual excalibur packages. - Leo > -----Oorspronkelijk bericht----- > Van: Peter Donald [mailto:[EMAIL PROTECTED]] > Verzonden: Sunday, April 14, 2002 1:12 PM > Aan: Avalon Developers List > Onderwerp: Re: cvs commit: jakarta-avalon-excalibur/io build.xml > default.properties > > > About this. What does everyone think of not having both a binary > and source > distribution for all the excalibur packages. They are the type of things > where you want both source and binaries for when integrating into > your own > apps. I would prefer one combined distribution that had both source and > binaries. > > Thoughts? > > On Sun, 14 Apr 2002 21:11, [EMAIL PROTECTED] wrote: > > jefft 02/04/14 04:11:29 > > > > Modified: io build.xml default.properties > > Log: > > Make src-dist more like dist > > > > Revision Changes Path > > 1.41 +9 -1 jakarta-avalon-excalibur/io/build.xml > > > > Index: build.xml > > =================================================================== > > RCS file: /home/cvs/jakarta-avalon-excalibur/io/build.xml,v > > retrieving revision 1.40 > > retrieving revision 1.41 > > diff -u -r1.40 -r1.41 > > --- build.xml 14 Apr 2002 10:19:39 -0000 1.40 > > +++ build.xml 14 Apr 2002 11:11:29 -0000 1.41 > > @@ -243,7 +243,8 @@ > > </target> > > > > <!-- Create the source distribution --> > > - <target name="src-dist" depends="dist-jar, javadocs"> > > + <target name="src-dist" depends="dist-jar, test-reports, > > checkstyle-report, javadocs" + description="Generates a source > > distribution (jar + src + javadocs + unittest and checkstyle reports"> > > > > <mkdir dir="${src.dist.dir}" /> > > > > @@ -270,6 +271,7 @@ > > <copy todir="${src.dist.dir}"> > > <fileset dir=".."> > > <include name="depchecker.xml"/> > > + <include name="KEYS"/> > > </fileset> > > </copy> > > <copy todir="${src.dist.dir}"> > > @@ -286,6 +288,12 @@ > > <fixcrlf srcdir="${src.dist.src}/java" includes="**/*.java" > > eol="lf"/> > > > > <chmod dir="${src.dist.dir}" perm="go-rwx" /> > > + > > + <mkdir dir="${dist.base}"/> > > + > > + <zip zipfile="${dist.base}/${dist.name}-src.zip" > > compress="true"> + <zipfileset dir="${src.dist.dir}" > > prefix="${dist.name}-src"/> + </zip> > > > > </target> > > > > > > > > > > 1.6 +1 -1 jakarta-avalon-excalibur/io/default.properties > > > > Index: default.properties > > =================================================================== > > RCS file: /home/cvs/jakarta-avalon-excalibur/io/default.properties,v > > retrieving revision 1.5 > > retrieving revision 1.6 > > diff -u -r1.5 -r1.6 > > --- default.properties 14 Apr 2002 10:19:39 -0000 1.5 > > +++ default.properties 14 Apr 2002 11:11:29 -0000 1.6 > > @@ -46,7 +46,7 @@ > > # Set the properties for distribution directories > > dist.dir = dist > > dist.javadocs = ${dist.dir}/docs/api > > -src.dist.dir= dist-src > > +src.dist.dir= src-dist > > src.dist.src= ${src.dist.dir}/src > > src.dist.lib= ${src.dist.dir}/lib > > src.dist.docs= ${src.dist.dir}/docs > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
