Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2012-09-17 19:12:49 +0000
committerJohn Arthorne2012-09-17 19:12:49 +0000
commit76bbcaa10f18d720f55cddcc9b983d0e995782c2 (patch)
tree04a5890a25a8b5df5ac1e8cfd811522de5e375cd
parentd9b15e4ba3c5f815546e92c0c97cd1adfcec7d9d (diff)
downloadrt.equinox.bundles-76bbcaa10f18d720f55cddcc9b983d0e995782c2.tar.gz
rt.equinox.bundles-76bbcaa10f18d720f55cddcc9b983d0e995782c2.tar.xz
rt.equinox.bundles-76bbcaa10f18d720f55cddcc9b983d0e995782c2.zip
Bug 389751 - Add profile to pom.xml for compiling without BREE librariesv20120917-191249I20120918-0800I20120917-2000
-rw-r--r--bundles/org.eclipse.equinox.io/pom.xml18
-rw-r--r--bundles/org.eclipse.equinox.util/pom.xml18
2 files changed, 36 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.io/pom.xml b/bundles/org.eclipse.equinox.io/pom.xml
index 3da882aa2..01e985ab6 100644
--- a/bundles/org.eclipse.equinox.io/pom.xml
+++ b/bundles/org.eclipse.equinox.io/pom.xml
@@ -23,4 +23,22 @@
<artifactId>org.eclipse.equinox.io</artifactId>
<version>1.0.400-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <profiles>
+ <profile>
+ <id>no-bree-libs</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>jsr14</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>
diff --git a/bundles/org.eclipse.equinox.util/pom.xml b/bundles/org.eclipse.equinox.util/pom.xml
index 7d4296b0c..18be69c69 100644
--- a/bundles/org.eclipse.equinox.util/pom.xml
+++ b/bundles/org.eclipse.equinox.util/pom.xml
@@ -23,4 +23,22 @@
<artifactId>org.eclipse.equinox.util</artifactId>
<version>1.0.400-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <profiles>
+ <profile>
+ <id>no-bree-libs</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>jsr14</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
</project>

Back to the top