Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMykola Nikishov2018-12-03 14:12:31 +0000
committerAlexander Kurtakov2018-12-17 16:12:37 +0000
commitff1b40e13a97d5ce49b9b04d4449bb2032b2d03e (patch)
treeec39c08cde0c505ed4c97426df4f0b4d64744030 /eclipse-platform-parent
parent7ee3ed9b8154f3e3e48d9f30ceb35bf8a810e11f (diff)
downloadeclipse.platform.releng.aggregator-ff1b40e13a97d5ce49b9b04d4449bb2032b2d03e.tar.gz
eclipse.platform.releng.aggregator-ff1b40e13a97d5ce49b9b04d4449bb2032b2d03e.tar.xz
eclipse.platform.releng.aggregator-ff1b40e13a97d5ce49b9b04d4449bb2032b2d03e.zip
Bug 541858 - Run eclipse-cbi-plugin:generate-api-build-xml under api-generation profile only
generate-api-build-xml goal, as part of the default profile, always generates Ant build file target/.apibuild.xml. This file is the source for API Tooling's File Generation Ant Task [1] that runs under api-generation profile only. Move eclipse-cbi-plugin:generate-api-build-xml to api-generation profile too. [1] https://wiki.eclipse.org/PDE/API_Tools/Tasks#File_Generation_Task Change-Id: I65da123938c5258a1e84dc4f74cbbccef7f20c9a Signed-off-by: Mykola Nikishov <mn@mn.com.ua>
Diffstat (limited to 'eclipse-platform-parent')
-rw-r--r--eclipse-platform-parent/pom.xml32
1 files changed, 16 insertions, 16 deletions
diff --git a/eclipse-platform-parent/pom.xml b/eclipse-platform-parent/pom.xml
index 6ba7770aa..fd2ff4ef9 100644
--- a/eclipse-platform-parent/pom.xml
+++ b/eclipse-platform-parent/pom.xml
@@ -246,22 +246,6 @@
<extensions>true</extensions>
</plugin>
<plugin>
- <groupId>org.eclipse.cbi.maven.plugins</groupId>
- <artifactId>eclipse-cbi-plugin</artifactId>
- <version>${cbi-plugins.version}</version>
- <executions>
- <execution>
- <!--
- Default lifecycle phase: 'GENERATE_SOURCES'
- See https://maven.apache.org/ref/3.5.4/maven-core/lifecycles.html
- -->
- <goals>
- <goal>generate-api-build-xml</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<configuration>
@@ -875,6 +859,22 @@
<build>
<plugins>
<plugin>
+ <groupId>org.eclipse.cbi.maven.plugins</groupId>
+ <artifactId>eclipse-cbi-plugin</artifactId>
+ <version>${cbi-plugins.version}</version>
+ <executions>
+ <execution>
+ <!--
+ Default lifecycle phase: 'GENERATE_SOURCES'
+ See https://maven.apache.org/ref/3.5.4/maven-core/lifecycles.html
+ -->
+ <goals>
+ <goal>generate-api-build-xml</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-eclipserun-plugin</artifactId>
<configuration>

Back to the top