|
@@ -0,0 +1,30 @@
|
|
|
+<?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>distribution</id>
|
|
|
+ <formats>
|
|
|
+ <format>zip</format>
|
|
|
+ </formats>
|
|
|
+ <fileSets>
|
|
|
+ <fileSet>
|
|
|
+ <directory>${project.basedir}/src/main/resources</directory>
|
|
|
+ <outputDirectory>/config</outputDirectory>
|
|
|
+ </fileSet>
|
|
|
+ <fileSet>
|
|
|
+ <directory>${project.basedir}/shell</directory>
|
|
|
+ <excludes>
|
|
|
+ <exclude>start.args</exclude>
|
|
|
+ <exclude>start.vmoptions</exclude>
|
|
|
+ </excludes>
|
|
|
+ <outputDirectory>/</outputDirectory>
|
|
|
+ <fileMode>0777</fileMode>
|
|
|
+ </fileSet>
|
|
|
+ </fileSets>
|
|
|
+ <dependencySets>
|
|
|
+ <dependencySet>
|
|
|
+ <useProjectArtifact>true</useProjectArtifact>
|
|
|
+ <outputDirectory>lib</outputDirectory>
|
|
|
+ <scope>runtime</scope>
|
|
|
+ </dependencySet>
|
|
|
+ </dependencySets>
|
|
|
+</assembly>
|