| author | Igor Fedorenko | 2012-08-13 09:22:45 (EDT) |
|---|---|---|
| committer | Paul Webster | 2012-09-12 09:41:26 (EDT) |
| commit | 16aea1a9ef10985d50638768936e9fc38441a603 (patch) (side-by-side diff) | |
| tree | c67cfeb1498e1ce1da914d4b0a0ac67a49cbc6cc | |
| parent | 2bf55dd6520e99c4a0a533f1d6c4f0b5daa02cc2 (diff) | |
| download | eclipse.platform.ua-16aea1a9ef10985d50638768936e9fc38441a603.zip eclipse.platform.ua-16aea1a9ef10985d50638768936e9fc38441a603.tar.gz eclipse.platform.ua-16aea1a9ef10985d50638768936e9fc38441a603.tar.bz2 | |
Bug 386646 - build against declared and/or observed bundle runtime execution environmentv20120912-134126
| -rw-r--r-- | org.eclipse.help.base/pom.xml | 25 | ||||
| -rw-r--r-- | org.eclipse.help/pom.xml | 12 | ||||
| -rw-r--r-- | pom.xml | 26 |
3 files changed, 38 insertions, 25 deletions
diff --git a/org.eclipse.help.base/pom.xml b/org.eclipse.help.base/pom.xml index 3b3a582..0f1c556 100644 --- a/org.eclipse.help.base/pom.xml +++ b/org.eclipse.help.base/pom.xml @@ -22,29 +22,4 @@ <artifactId>org.eclipse.help.base</artifactId> <version>3.6.100-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> - - <build> - <plugins> - <plugin> - <groupId>org.eclipse.tycho</groupId> - <artifactId>target-platform-configuration</artifactId> - <configuration> - <dependency-resolution> - <extraRequirements> - <requirement> - <type>eclipse-plugin</type> - <id>org.apache.lucene</id> - <versionRange>[2.9,3.0)</versionRange> - </requirement> - <requirement> - <type>eclipse-plugin</type> - <id>org.apache.lucene.analysis</id> - <versionRange>[2.9,3.0)</versionRange> - </requirement> - </extraRequirements> - </dependency-resolution> - </configuration> - </plugin> - </plugins> - </build> </project> diff --git a/org.eclipse.help/pom.xml b/org.eclipse.help/pom.xml index 68a4c5d..e49a2a6 100644 --- a/org.eclipse.help/pom.xml +++ b/org.eclipse.help/pom.xml @@ -23,4 +23,16 @@ <artifactId>org.eclipse.help</artifactId> <version>3.6.0-SNAPSHOT</version> <packaging>eclipse-plugin</packaging> + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <configuration> + <!-- observed BREE as of Juno --> + <executionEnvironment>J2SE-1.4</executionEnvironment> + </configuration> + </plugin> + </plugins> + </build> </project> @@ -39,4 +39,30 @@ <module>org.eclipse.ui.intro</module> <module>org.eclipse.ui.intro.universal</module> </modules> + + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>target-platform-configuration</artifactId> + <configuration> + <dependency-resolution> + <extraRequirements> + <requirement> + <type>eclipse-plugin</type> + <id>org.apache.lucene</id> + <versionRange>[2.9,3.0)</versionRange> + </requirement> + <requirement> + <type>eclipse-plugin</type> + <id>org.apache.lucene.analysis</id> + <versionRange>[2.9,3.0)</versionRange> + </requirement> + </extraRequirements> + </dependency-resolution> + </configuration> + </plugin> + </plugins> + </build> + </project> |

