aboutsummaryrefslogtreecommitdiff
path: root/connector/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'connector/pom.xml')
-rw-r--r--connector/pom.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/connector/pom.xml b/connector/pom.xml
index af1d5947..52addf4d 100644
--- a/connector/pom.xml
+++ b/connector/pom.xml
@@ -134,6 +134,28 @@
</dependencies>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>src/assembly/assembly_dir.xml</descriptor>
+ <descriptor>src/assembly/assembly_zip.xml</descriptor>
+ </descriptors>
+ <finalName>${project.artifactId}-${project.version}</finalName>
+ <outputDirectory>${project.parent.build.directory}</outputDirectory>
+ </configuration>
+ <executions>
+ <execution>
+ <id>make-assembly</id>
+ <phase>package</phase>
+ <goals>
+ <goal>single</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
</plugins>
</build>
</project>