Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: cc3385492d6b6ae09ca85fa66a273f1af434d00f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                                                                                             
                           






























                                                                                            
<?xml version="1.0" encoding="UTF-8"?>
<!--
  Copyright (c) 2014-2017 Red Hat Inc.
  All rights reserved. This program and the accompanying materials
  are made available under the terms of the Eclipse Distribution License v1.0
  which accompanies this distribution, and is available at
  http://www.eclipse.org/org/documents/edl-v10.php

  Contributors:
     Mat Booth - initial implementation
-->
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
  <id>sources</id>
  <formats>
    <format>tar.xz</format>
  </formats>
  <includeBaseDirectory>true</includeBaseDirectory>
  <fileSets>
    <fileSet>
      <directory>${project.basedir}/..</directory>
      <excludes>
        <!-- Exclude pre-built binary artifacts -->
        <exclude>eclipse.platform.resources/**/*.dll</exclude>
        <exclude>eclipse.platform.resources/**/*.jnilib</exclude>
        <exclude>eclipse.platform.resources/**/*.so</exclude>
        <exclude>eclipse.platform.swt.binaries/**/*.dll</exclude>
        <exclude>eclipse.platform.swt.binaries/**/*.jnilib</exclude>
        <exclude>eclipse.platform.swt.binaries/**/*.so</exclude>
        <exclude>eclipse.platform.team/**/*.dll</exclude>
        <exclude>eclipse.platform.team/**/*.so</exclude>
        <exclude>rt.equinox.binaries/org.eclipse.equinox.executable/bin/**</exclude>
        <exclude>rt.equinox.binaries/org.eclipse.equinox.executable/contributed/**</exclude>
        <exclude>rt.equinox.binaries/**/*.dll</exclude>
        <exclude>rt.equinox.binaries/**/*.so</exclude>
        <exclude>rt.equinox.bundles/**/*.dll</exclude>
        <exclude>rt.equinox.bundles/**/*.jnilib</exclude>
        <exclude>rt.equinox.bundles/**/*.so</exclude>
        <!-- Exclude scripts and stuff that distro integrators don't need -->
        <exclude>production/**</exclude>
        <exclude>scripts/**</exclude>
        <exclude>target/**</exclude>
        <exclude>workspace/**</exclude>
      </excludes>
    </fileSet>
  </fileSets>
</assembly>

Back to the top