Artículo

Fecha: 2010-03-02 10:26:35

Unzip jar using ant


Example: Unzip all jar files in lib folder to tmp folder using an ant task:

	<target name="extractJars">
		<property name="extracted" location="tmp"/>
		<mkdir dir="tmp"/>
		<unzip dest="tmp">
		    <fileset dir="lib">
		        <include name="**/*.jar"/>
		    </fileset>
		</unzip>
	</target>	

Autor:Jose Miguel Bataller

Buscador

Buscar


Últimas entradas

Preseleccionar un option de un element select html con jQuery »

Testing for Empty elements in XSL »

Convert XML File to String »

Java Keytool Commands for Managing security certificates »

Execute servlet filter before calling Axis web service »

Set trustStore for SSL connection in Java »

Example of a client-wsdd.config »

Convert Axis Java Object to XML »

Validating a String using Regex in Java »

Open browser in Java »