|
Java example source code file (assembly.xml)
The assembly.xml Java example source code
<?xml version="1.0" encoding="UTF-8"?>
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>tarball
<formats>
<format>tar.bz2
</formats>
<includeBaseDirectory>true
<fileSets>
<fileSet>
<directory>${project.basedir}/..
<outputDirectory/>
<includes>
<include>*.txt
<include>*.md
</includes>
</fileSet>
<fileSet>
<directory>${project.basedir}/..
<outputDirectory/>
<includes>
<include>license/**/*.txt
<include>license/**/*.md
</includes>
</fileSet>
<fileSet>
<directory>target/jars
<outputDirectory>jar
<includes>
<include>**/*.jar
</includes>
</fileSet>
<fileSet>
<directory>target/jars-all
<outputDirectory>jar/all-in-one
<includes>
<include>**/*.jar
</includes>
</fileSet>
<fileSet>
<directory>target/apidocs-all
<outputDirectory>javadoc
<includes>
<include>**/*.jar
</includes>
</fileSet>
</fileSets>
</assembly>
Other Java examples (source code examples)Here is a short list of links related to this Java assembly.xml source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.