On 2011-12-21, xsli2 wrote:
> Dear All:
> My directory structure is the following:
> libs/externa/ containing a.jar, b.jar
> libs/installed/ the generated runnable JAR file, "sample.jar", will be here
> I have had a really hard time to create a runnable JAR file using
> Ant(version 1.6.5). The
On 2011-12-22, Stefan Bodewig wrote:
> On 2011-12-19, Frank Astier wrote:
> Later versions of tar support workarounds (namely ustar later used by
> GNU tar and BSD tar aswell) and even later the newer POSIX standard
> added PAX extension headers to address this (and other things like file
> names
On 2011-12-19, Frank Astier wrote:
> I’m trying to use the Apache Tar package (1.8.2) for a Java program
> that tars large files in Hadoop. I am currently failing on a file
> that’s 17 GB long.
First of all, do yourself a favor and use Commons Compress rather than
Ant's tar package.
Traditional
Dear All:
My directory structure is the following:
libs/externa/ containing a.jar, b.jar
libs/installed/ the generated runnable JAR file, "sample.jar", will be here
src/ containing Java source files
build/ containing Java class files
The main class is x.y.z.MyMain
I have had a really hard time