Skip to content
Snippets Groups Projects
Select Git revision
  • 556476a742fc71f80ef35d966c8d19f0c191d3a3
  • master default protected
  • apache-ant
  • 2.0.0
  • 1.0.1
  • 1.0.0
6 results

bin.xml

Blame
  • František Dvořák's avatar
    František Dvořák authored
    Hadoop and commons dependences are excluded.
    1d6bb17f
    History
    bin.xml 859 B
    <?xml version="1.0" encoding="UTF-8"?>
    
    <assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
    		  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    		  xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0
    							  http://maven.apache.org/xsd/assembly-1.1.0.xsd">
    
    	<id>bin</id>
    
    	<formats>
    		<format>jar</format>
    	</formats>
    
    	<includeBaseDirectory>false</includeBaseDirectory>
    
    	<fileSets>
    		<fileSet>
    			<directory>target/classes</directory>
    			<outputDirectory></outputDirectory>
    		</fileSet>
    	</fileSets>
    
    	<dependencySets>
    		<dependencySet>
    			<outputDirectory>lib</outputDirectory>
    			<useProjectArtifact>false</useProjectArtifact>
    			<scope>runtime</scope>
    			<includes>
    				<include>org.apache.ant:ant</include>
    			</includes>
    		</dependencySet>
    	</dependencySets>
    </assembly>