| author | Thanh Ha | 2012-12-05 21:46:32 (EST) |
|---|---|---|
| committer | Paul Webster | 2012-12-05 21:46:32 (EST) |
| commit | 55794415bb624e535b7eaf24ffb77a3912df2751 (patch) (side-by-side diff) | |
| tree | dbbf2141bac5e67f90891330a9d2e0b643416980 | |
| parent | 24777320e7556898fee91f0429b43f3afa9b05f7 (diff) | |
| download | eclipse.platform.common-55794415bb624e535b7eaf24ffb77a3912df2751.zip eclipse.platform.common-55794415bb624e535b7eaf24ffb77a3912df2751.tar.gz eclipse.platform.common-55794415bb624e535b7eaf24ffb77a3912df2751.tar.bz2 | |
Bug 395651 - build-docs profile not active by defaultv20121206-024632
Include the user doc bundles with the fix.
| -rw-r--r-- | bundles/org.eclipse.jdt.doc.user/pom.xml | 6 | ||||
| -rw-r--r-- | bundles/org.eclipse.platform.doc.user/pom.xml | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/bundles/org.eclipse.jdt.doc.user/pom.xml b/bundles/org.eclipse.jdt.doc.user/pom.xml index 74b5b08..eb1c300 100644 --- a/bundles/org.eclipse.jdt.doc.user/pom.xml +++ b/bundles/org.eclipse.jdt.doc.user/pom.xml @@ -65,7 +65,11 @@ <profile> <id>build-docs</id> <activation> - <activeByDefault>true</activeByDefault> + <property> + <!-- workaround. activeByDefault is disabled when another profile is + selected. --> + <name>!longnotexistingproperty</name> + </property> </activation> <build> <plugins> diff --git a/bundles/org.eclipse.platform.doc.user/pom.xml b/bundles/org.eclipse.platform.doc.user/pom.xml index 1d90fb3..f0e860d 100644 --- a/bundles/org.eclipse.platform.doc.user/pom.xml +++ b/bundles/org.eclipse.platform.doc.user/pom.xml @@ -28,7 +28,11 @@ <profile> <id>build-docs</id> <activation> - <activeByDefault>true</activeByDefault> + <property> + <!-- workaround. activeByDefault is disabled when another profile is + selected. --> + <name>!longnotexistingproperty</name> + </property> </activation> <build> <plugins> |

