Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2011-04-12 10:33:02 +0000
committerAndrew Overholt2011-04-13 19:58:57 +0000
commit4e9acc83257d50f9ac24237039b5fc6fe380c683 (patch)
treef66838640ff7746b701d498f8f57fea10abd3429
parent98bf281e08b5175c6f59ac85b68c740a78fc5d57 (diff)
downloadorg.eclipse.linuxtools-4e9acc83257d50f9ac24237039b5fc6fe380c683.tar.gz
org.eclipse.linuxtools-4e9acc83257d50f9ac24237039b5fc6fe380c683.tar.xz
org.eclipse.linuxtools-4e9acc83257d50f9ac24237039b5fc6fe380c683.zip
Add assembly tarball generation support.
-rw-r--r--systemtap/.gitignore1
-rw-r--r--systemtap/pom.xml13
2 files changed, 14 insertions, 0 deletions
diff --git a/systemtap/.gitignore b/systemtap/.gitignore
new file mode 100644
index 0000000000..ea8c4bf7f3
--- /dev/null
+++ b/systemtap/.gitignore
@@ -0,0 +1 @@
+/target
diff --git a/systemtap/pom.xml b/systemtap/pom.xml
index 7fabf03891..fe14cfeab3 100644
--- a/systemtap/pom.xml
+++ b/systemtap/pom.xml
@@ -42,6 +42,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