Gld Extension Release Module release.xml: Difference between revisions
Jump to navigation
Jump to search
(Created page with "<pre> <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...") |
No edit summary |
||
Line 1: | Line 1: | ||
<pre> | <pre> | ||
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | <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>public-binary-release</id> | <id>public-binary-release</id> |
Revision as of 19:57, 19 January 2017
<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>public-binary-release</id> <formats> <format>zip</format> </formats> <includeBaseDirectory>true</includeBaseDirectory> <files> <file> <!-- Needs the extension name replaced --> <source>./src/main/bash/.install</source> <filtered>true</filtered> <outputDirectory>bin</outputDirectory> <fileMode>0755</fileMode> </file> </files> <dependencySets> <!-- We place the integration library into the root directory of the extension ZIP file --> <dependencySet> <outputDirectory>.</outputDirectory> <includes> <include>io.novaordis.gld.extensions.jboss-datagrid-7:*</include> </includes> </dependencySet> <!-- We place the service external dependencies under a sub-directory whose name is the version we ship dependencies for. We do that by including everything, except the integration library. --> <dependencySet> <outputDirectory>${jboss.datagrid.version}</outputDirectory> <excludes> <exclude>io.novaordis.gld.extensions.jboss-datagrid-7:*</exclude> </excludes> </dependencySet> </dependencySets> </assembly>