| author | Thanh Ha | 2012-12-03 20:00:13 (EST) |
|---|---|---|
| committer | Paul Webster | 2012-12-03 20:00:13 (EST) |
| commit | b7fffe88a8204184807510c3579e1e9bb09e3488 (patch) (side-by-side diff) | |
| tree | bc84410b8f2a261cd70f6fe67836a477dea339ca | |
| parent | f1e7ea55c303f2d2d21832f5ad27ab6e0845239f (diff) | |
| download | eclipse.platform.common-b7fffe88a8204184807510c3579e1e9bb09e3488.zip eclipse.platform.common-b7fffe88a8204184807510c3579e1e9bb09e3488.tar.gz eclipse.platform.common-b7fffe88a8204184807510c3579e1e9bb09e3488.tar.bz2 | |
replace activeByDefault with !somelongproperty
| -rw-r--r-- | bundles/org.eclipse.jdt.doc.isv/pom.xml | 6 | ||||
| -rw-r--r-- | bundles/org.eclipse.pde.doc.user/pom.xml | 6 | ||||
| -rw-r--r-- | bundles/org.eclipse.platform.doc.isv/pom.xml | 6 |
3 files changed, 15 insertions, 3 deletions
diff --git a/bundles/org.eclipse.jdt.doc.isv/pom.xml b/bundles/org.eclipse.jdt.doc.isv/pom.xml index dcea858..b905980 100644 --- a/bundles/org.eclipse.jdt.doc.isv/pom.xml +++ b/bundles/org.eclipse.jdt.doc.isv/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.pde.doc.user/pom.xml b/bundles/org.eclipse.pde.doc.user/pom.xml index 1c9e762..594ad8f 100644 --- a/bundles/org.eclipse.pde.doc.user/pom.xml +++ b/bundles/org.eclipse.pde.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.isv/pom.xml b/bundles/org.eclipse.platform.doc.isv/pom.xml index 2e9fdbc..049d605 100644 --- a/bundles/org.eclipse.platform.doc.isv/pom.xml +++ b/bundles/org.eclipse.platform.doc.isv/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> |

