Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Sewe2018-02-02 12:56:15 +0000
committerAndreas Sewe2018-02-02 12:57:32 +0000
commit6317efaec86f1e853659903b85ef06762e61ec5b (patch)
treee1deb52fb31827a6c130a261f06df09d3574883f /releng/org.eclipse.epp.config
parent2223bd71bb580f3fe8ec080a166e823c8509d352 (diff)
downloadorg.eclipse.epp.packages-6317efaec86f1e853659903b85ef06762e61ec5b.tar.gz
org.eclipse.epp.packages-6317efaec86f1e853659903b85ef06762e61ec5b.tar.xz
org.eclipse.epp.packages-6317efaec86f1e853659903b85ef06762e61ec5b.zip
Merge duplicate declarations of tycho-p2-repository-plugin
This fixes the following warning by Maven: Some problems were encountered while building the effective model for org.eclipse.epp:org.eclipse.epp-buildall:pom:4.8.0-SNAPSHOT 'build.pluginManagement.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.eclipse.tycho:tycho-p2-repository-plugin [...] Change-Id: Ia22ce1a0c136806b576a99169f0bd9edc47360cc Signed-off-by: Andreas Sewe <andreas.sewe@codetrails.com>
Diffstat (limited to 'releng/org.eclipse.epp.config')
-rw-r--r--releng/org.eclipse.epp.config/parent/pom.xml36
1 files changed, 16 insertions, 20 deletions
diff --git a/releng/org.eclipse.epp.config/parent/pom.xml b/releng/org.eclipse.epp.config/parent/pom.xml
index 3307d464..492a621b 100644
--- a/releng/org.eclipse.epp.config/parent/pom.xml
+++ b/releng/org.eclipse.epp.config/parent/pom.xml
@@ -252,6 +252,22 @@
<includeAllDependencies>true</includeAllDependencies>
<compress>true</compress>
</configuration>
+ <executions>
+ <execution>
+ <id>default-assemble-repository</id>
+ <phase></phase>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </execution>
+ <execution>
+ <id>default-archive-repository</id>
+ <phase></phase>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </execution>
+ </executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
@@ -327,26 +343,6 @@
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-p2-repository-plugin</artifactId>
- <executions>
- <execution>
- <id>default-assemble-repository</id>
- <phase></phase>
- <configuration>
- <skip>true</skip>
- </configuration>
- </execution>
- <execution>
- <id>default-archive-repository</id>
- <phase></phase>
- <configuration>
- <skip>true</skip>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
<version>${tycho.version}</version>
<executions>

Back to the top