Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2011-04-12 10:23:21 +0000
committerAndrew Overholt2011-04-13 19:58:57 +0000
commitfcd07eb59372be538e2c1d82f6b8b826a2a32c70 (patch)
tree9cc7cadf6e153fee30f01572478eea9451e64329
parent4f13c9a696f9d8524fe7dbb6106c8d6f1067c6c0 (diff)
downloadorg.eclipse.linuxtools-fcd07eb59372be538e2c1d82f6b8b826a2a32c70.tar.gz
org.eclipse.linuxtools-fcd07eb59372be538e2c1d82f6b8b826a2a32c70.tar.xz
org.eclipse.linuxtools-fcd07eb59372be538e2c1d82f6b8b826a2a32c70.zip
Add assembly tarball generation support.
-rw-r--r--libhover/.gitignore1
-rw-r--r--libhover/pom.xml13
2 files changed, 14 insertions, 0 deletions
diff --git a/libhover/.gitignore b/libhover/.gitignore
new file mode 100644
index 0000000000..ea8c4bf7f3
--- /dev/null
+++ b/libhover/.gitignore
@@ -0,0 +1 @@
+/target
diff --git a/libhover/pom.xml b/libhover/pom.xml
index 822b9b805d..5bf31aad46 100644
--- a/libhover/pom.xml
+++ b/libhover/pom.xml
@@ -43,6 +43,19 @@
</comments>
</license>
</licenses>
+
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>../src.xml</descriptor>
+ </descriptors>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
<modules>

Back to the top