-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include proper assembly.xml and MANIFEST
- Loading branch information
Showing
3 changed files
with
51 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |