Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2011-04-12 08:51:01 +0000
committerAlexander Kurtakov2011-04-12 08:51:01 +0000
commit840b746ed20c25c09c83d42f81a7b5004be4990d (patch)
tree0c074b2371ea13e566d610943e8b05129a9bc7a9 /src.xml
parent24ab64b7fbf5a8f885e70830337f9fac1c4a5642 (diff)
downloadorg.eclipse.linuxtools-840b746ed20c25c09c83d42f81a7b5004be4990d.tar.gz
org.eclipse.linuxtools-840b746ed20c25c09c83d42f81a7b5004be4990d.tar.xz
org.eclipse.linuxtools-840b746ed20c25c09c83d42f81a7b5004be4990d.zip
Add assembly configuration for usage in per subproject tarball creation
Diffstat (limited to 'src.xml')
-rw-r--r--src.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/src.xml b/src.xml
new file mode 100644
index 0000000000..5911b3fea6
--- /dev/null
+++ b/src.xml
@@ -0,0 +1,32 @@
+<assembly>
+ <id>src</id>
+ <formats>
+ <format>tar.bz2</format>
+ </formats>
+ <baseDirectory>${project.artifactId}-${project.version}-src</baseDirectory>
+<moduleSets>
+ <moduleSet>
+ <includeSubModules/>
+ <sources>
+ <useDefaultExcludes>false</useDefaultExcludes>
+ <includeModuleDirectory>true</includeModuleDirectory>
+ <fileSets>
+ <fileSet>
+ <excludes>
+ <exclude>target/**</exclude>
+ <exclude>bin/**</exclude>
+ </excludes>
+ </fileSet>
+ </fileSets>
+ </sources>
+ </moduleSet>
+ </moduleSets>
+
+ <fileSets>
+ <fileSet>
+ <includes>
+ <include>pom.xml</include>
+ </includes>
+ </fileSet>
+ </fileSets>
+</assembly>

Back to the top