Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'eclipse-platform-sources')
-rw-r--r--eclipse-platform-sources/pom.xml49
-rw-r--r--eclipse-platform-sources/sources.xml48
2 files changed, 0 insertions, 97 deletions
diff --git a/eclipse-platform-sources/pom.xml b/eclipse-platform-sources/pom.xml
deleted file mode 100644
index 54ca530cd..000000000
--- a/eclipse-platform-sources/pom.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Copyright (c) 2017 Eclipse Foundation.
- 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
- https://www.eclipse.org/org/documents/edl-v10.php
--->
-<project
- xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <parent>
- <groupId>org.eclipse</groupId>
- <artifactId>eclipse-platform-parent</artifactId>
- <version>4.23.0-SNAPSHOT</version>
- <relativePath>../eclipse-platform-parent</relativePath>
- </parent>
-
- <artifactId>eclipse-platform-sources</artifactId>
- <packaging>pom</packaging>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <descriptor>sources.xml</descriptor>
- </descriptors>
- <tarLongFileMode>posix</tarLongFileMode>
- <appendAssemblyId>false</appendAssemblyId>
- <finalName>${project.artifactId}-${buildId}</finalName>
- </configuration>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-</project>
diff --git a/eclipse-platform-sources/sources.xml b/eclipse-platform-sources/sources.xml
deleted file mode 100644
index ae33ef90b..000000000
--- a/eclipse-platform-sources/sources.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-<?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
- https://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