diff options
author | Krzysztof Daniel | 2012-07-13 15:43:25 -0400 |
---|---|---|
committer | Thanh Ha | 2012-07-13 15:45:41 -0400 |
commit | 736a3f853058a22ff2aed966438a34cd74f87dbf (patch) | |
tree | 909ec59a589633252fdfeeb198e3323d666fcf03 | |
parent | d0320fe2b3efb9d3d549c2c9f82f03a5e8030631 (diff) | |
download | eclipse.platform.releng.aggregator-736a3f853058a22ff2aed966438a34cd74f87dbf.zip eclipse.platform.releng.aggregator-736a3f853058a22ff2aed966438a34cd74f87dbf.tar.gz eclipse.platform.releng.aggregator-736a3f853058a22ff2aed966438a34cd74f87dbf.tar.xz |
Bug 384482 - Apple renamed rt.jar to classes.jar causing build issues on macosx
-rw-r--r-- | eclipse-parent/pom.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/eclipse-parent/pom.xml b/eclipse-parent/pom.xml index 107ed79..3931e2a 100644 --- a/eclipse-parent/pom.xml +++ b/eclipse-parent/pom.xml @@ -300,6 +300,26 @@ </plugins> </build> </profile> + <profile> + <id>mac-bootpath-fix</id> + <activation> + <os> + <family>mac</family> + </os> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-compiler-plugin</artifactId> + <version>${tycho.version}</version> + <configuration> + <compilerArgument>-classpath ${java.home}/bundle/Classes/classes.jar</compilerArgument> + </configuration> + </plugin> + </plugins> + </build> + </profile> </profiles> </project> |