Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/lttng
diff options
context:
space:
mode:
authorAlexander Kurtakov2011-04-12 10:25:35 +0000
committerAlexander Kurtakov2011-04-12 10:25:35 +0000
commit3e8a095ba49e97a2d29d9966f437dd32205b694e (patch)
treea98661e56f9b886e3a8f1da14987bbe278b912db /lttng
parenta66affc9812d441b3e9dec5d04a783e91e35460c (diff)
downloadorg.eclipse.linuxtools-3e8a095ba49e97a2d29d9966f437dd32205b694e.tar.gz
org.eclipse.linuxtools-3e8a095ba49e97a2d29d9966f437dd32205b694e.tar.xz
org.eclipse.linuxtools-3e8a095ba49e97a2d29d9966f437dd32205b694e.zip
Add assembly tarball generation support.
Diffstat (limited to 'lttng')
-rw-r--r--lttng/.gitignore1
-rw-r--r--lttng/pom.xml13
2 files changed, 14 insertions, 0 deletions
diff --git a/lttng/.gitignore b/lttng/.gitignore
new file mode 100644
index 0000000000..ea8c4bf7f3
--- /dev/null
+++ b/lttng/.gitignore
@@ -0,0 +1 @@
+/target
diff --git a/lttng/pom.xml b/lttng/pom.xml
index a2c9acd00e..1b0704969b 100644
--- a/lttng/pom.xml
+++ b/lttng/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>
<module>org.eclipse.linuxtools.lttng</module>

Back to the top