| author | Thanh Ha | 2012-10-02 09:37:50 (EDT) |
|---|---|---|
| committer | Markus Keller | 2012-10-02 09:37:50 (EDT) |
| commit | bb4550d9462fb71b9f36b1a85ac7399af23e8910 (patch) (side-by-side diff) | |
| tree | 3979b660f1609da6821b91b6399a1fe4424c9bc6 | |
| parent | 66ffda3695799e7c8de983896e0559388426005d (diff) | |
| download | eclipse.jdt-bb4550d9462fb71b9f36b1a85ac7399af23e8910.zip eclipse.jdt-bb4550d9462fb71b9f36b1a85ac7399af23e8910.tar.gz eclipse.jdt-bb4550d9462fb71b9f36b1a85ac7399af23e8910.tar.bz2 | |
Bug 390855: Include ISV docs in CBI build
Revert "Fixed bug 389903: POM update - Include source features in CBI
build"
This reverts commit 66ffda3695799e7c8de983896e0559388426005d.
| -rw-r--r-- | org.eclipse.jdt-feature/pom.xml | 41 |
1 files changed, 40 insertions, 1 deletions
diff --git a/org.eclipse.jdt-feature/pom.xml b/org.eclipse.jdt-feature/pom.xml index 1967010..c065c93 100644 --- a/org.eclipse.jdt-feature/pom.xml +++ b/org.eclipse.jdt-feature/pom.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- - Copyright (c) 2012 Eclipse Foundation. + Copyright (c) 2012 Eclipse Foundation and others. 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 @@ -28,6 +28,45 @@ <plugins> <plugin> <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <configuration> + <dependency-resolution> + <extraRequirements> + <!-- this guarantees proper reactor build order --> + <requirement> + <type>eclipse-plugin</type> + <id>org.eclipse.jdt.doc.isv</id> + <versionRange>0.0.0</versionRange> + </requirement> + </extraRequirements> + </dependency-resolution> + </configuration> + </plugin> + <plugin> + <groupId>org.eclipse.tycho.extras</groupId> + <artifactId>tycho-source-feature-plugin</artifactId> + <executions> + <execution> + <phase>package</phase> + <id>source-feature</id> + <goals> + <goal>source-feature</goal> + </goals> + <configuration> + <plugins> + <plugin id="org.eclipse.jdt.doc.isv" versionRange="0.0.0" /> + </plugins> + <excludes> + <plugin id="org.eclipse.jdt" /> + <plugin id="org.junit4" /> + <plugin id="org.eclipse.jdt.doc.user" /> + </excludes> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.eclipse.tycho</groupId> <artifactId>tycho-p2-plugin</artifactId> <version>${tycho.version}</version> <executions> |

