Skip to content

Commit

Permalink
added assembly file for javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
S1artie committed Mar 9, 2015
1 parent 73d9e64 commit 32436e6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
1 change: 0 additions & 1 deletion javadoc/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
/target/
/assemble/
18 changes: 18 additions & 0 deletions javadoc/assemble/assemble-plugins.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<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>${project.version}</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>

<fileSets>
<fileSet>
<useDefaultExcludes>false</useDefaultExcludes>
<directory>target/site/apidocs</directory>
<outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>

</assembly>

0 comments on commit 32436e6

Please sign in to comment.