Skip to content

Commit

Permalink
GHI-#5 Add assembly descriptor file for binary packages
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Oct 30, 2016
1 parent a8dc318 commit b8affa9
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions src/main/assets/assembly-bin.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
title Binary Assembly Descriptor +
project nord-java +
version +
repository https://github.com/arcticicestudio/nord-java +
author Arctic Ice Studio +
email [email protected] +
copyright Copyright (C) 2016 +
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-->
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
<id>bin</id>
<formats>
<format>tar.gz</format>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>${project.basedir}</directory>
<outputDirectory>${file.separator}</outputDirectory>
<includes>
<include>CHANGELOG.md</include>
<include>LICENSE.md</include>
<include>README.md</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.build.directory}</directory>
<outputDirectory>${file.separator}</outputDirectory>
<includes>
<include>*.jar</include>
<include>*.md5</include>
<include>*.sha1</include>
<include>pom.xml*</include>
</includes>
</fileSet>
</fileSets>
</assembly>

0 comments on commit b8affa9

Please sign in to comment.