Skip to content

Commit

Permalink
Include proper assembly.xml and MANIFEST
Browse files Browse the repository at this point in the history
  • Loading branch information
pleku committed Oct 21, 2017
1 parent 6521dca commit 391af7a
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,5 @@ rebel.xml
*.launch

resizablecsslayout-demo/src/main/webapp/VAADIN/widgetsets/*
*/assembly/*
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
7 changes: 7 additions & 0 deletions resizablecsslayout/assembly/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Manifest-Version: 1.0
Vaadin-Package-Version: 1
Vaadin-Addon: ${Vaadin-Addon}
Vaadin-License-Title: ${Vaadin-License-Title}
Implementation-Vendor: ${Implementation-Vendor}
Implementation-Title: ${Implementation-Title}
Implementation-Version: ${Implementation-Version}
44 changes: 44 additions & 0 deletions resizablecsslayout/assembly/assembly.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?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>addon</id>

<!-- Note: the base directory for this assembly descriptor is one of the
license specific subprojects -->

<formats>
<format>zip</format>
</formats>

<!-- Do not use because we must put META-INF/MANIFEST.MF there. -->
<includeBaseDirectory>false</includeBaseDirectory>

<fileSets>
<fileSet>
<directory>..</directory>
<includes>
<include>LICENSE.txt</include>
<include>README.md</include>
</includes>
</fileSet>
<fileSet>
<directory>target</directory>
<outputDirectory></outputDirectory>
<includes>
<include>*.jar</include>
<include>*.pdf</include>
</includes>
</fileSet>
</fileSets>

<files>
<!-- This is vaadin.com/directory related manifest needed in the zip package -->
<file>
<source>assembly/MANIFEST.MF</source>
<outputDirectory>META-INF</outputDirectory>
<filtered>true</filtered>
</file>
</files>
</assembly>

0 comments on commit 391af7a

Please sign in to comment.