Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Grunberg2019-03-13 16:31:04 +0000
committerRoland Grunberg2019-03-13 17:47:18 +0000
commit11865e6e7d86a9d2e63c7b25605f6055875e63ad (patch)
treec08137a6732e54b3950585c08fc6e6ed2336e860
parent4ac949abbfb3d3ef69f79ed5787504cf3e092267 (diff)
downloadorg.eclipse.linuxtools-11865e6e7d86a9d2e63c7b25605f6055875e63ad.tar.gz
org.eclipse.linuxtools-11865e6e7d86a9d2e63c7b25605f6055875e63ad.tar.xz
org.eclipse.linuxtools-11865e6e7d86a9d2e63c7b25605f6055875e63ad.zip
Remove p2 repository deployment steps from Maven build.
The maven-antrun-plugin executions that copy the built p2 repositories to our downloads page (when build-server profile enabled) will not succeed on new infrastructure as the Maven build will not have access to the target locations. These steps will be done outside the Maven build phase. Change-Id: Ief055849b038ee204c2d77fd8f061a1807003892 Reviewed-on: https://git.eclipse.org/r/138678 Reviewed-by: Roland Grunberg <rgrunber@redhat.com> Tested-by: Roland Grunberg <rgrunber@redhat.com>
-rw-r--r--releng/org.eclipse.linuxtools.docker-site/pom.xml38
-rw-r--r--releng/org.eclipse.linuxtools.releng-site/pom.xml38
2 files changed, 0 insertions, 76 deletions
diff --git a/releng/org.eclipse.linuxtools.docker-site/pom.xml b/releng/org.eclipse.linuxtools.docker-site/pom.xml
index 17241d1087..4f98e8b869 100644
--- a/releng/org.eclipse.linuxtools.docker-site/pom.xml
+++ b/releng/org.eclipse.linuxtools.docker-site/pom.xml
@@ -26,44 +26,6 @@
<artifactId>org.eclipse.linuxtools.docker-site</artifactId>
<packaging>eclipse-repository</packaging>
- <profiles>
- <profile>
- <id>build-server</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>deploy</id>
- <phase>verify</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <delete includeemptydirs="false">
- <fileset
- dir="/home/data/httpd/download.eclipse.org/linuxtools/updates-docker-nightly">
- <include name="**" />
- </fileset>
- </delete>
- <copy includeemptydirs="false"
- todir="/home/data/httpd/download.eclipse.org/linuxtools/updates-docker-nightly">
- <fileset dir="target/repository">
- <include name="**" />
- </fileset>
- </copy>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
<build>
<plugins>
<plugin>
diff --git a/releng/org.eclipse.linuxtools.releng-site/pom.xml b/releng/org.eclipse.linuxtools.releng-site/pom.xml
index f29f14a4ea..a24e807330 100644
--- a/releng/org.eclipse.linuxtools.releng-site/pom.xml
+++ b/releng/org.eclipse.linuxtools.releng-site/pom.xml
@@ -26,44 +26,6 @@
<artifactId>org.eclipse.linuxtools.releng-site</artifactId>
<packaging>eclipse-repository</packaging>
- <profiles>
- <profile>
- <id>build-server</id>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>deploy</id>
- <phase>verify</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <target>
- <delete includeemptydirs="false">
- <fileset
- dir="/home/data/httpd/download.eclipse.org/linuxtools/updates-nightly">
- <include name="**" />
- </fileset>
- </delete>
- <copy includeemptydirs="false"
- todir="/home/data/httpd/download.eclipse.org/linuxtools/updates-nightly">
- <fileset dir="target/repository">
- <include name="**" />
- </fileset>
- </copy>
- </target>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
<build>
<plugins>
<plugin>

Back to the top