diff options
| author | John Arthorne | 2012-09-17 19:12:49 +0000 |
|---|---|---|
| committer | John Arthorne | 2012-09-17 19:28:07 +0000 |
| commit | 37290948acd98fa22d439d206b54df214f45c341 (patch) | |
| tree | 031a32ac4156968dbf608f3a4325b1d541f888c9 | |
| parent | 5f9b9a75a1b0d6f1b2aa3a9ee47297d0731a887f (diff) | |
| download | rt.equinox.bundles-37290948acd98fa22d439d206b54df214f45c341.tar.gz rt.equinox.bundles-37290948acd98fa22d439d206b54df214f45c341.tar.xz rt.equinox.bundles-37290948acd98fa22d439d206b54df214f45c341.zip | |
Bug 389751 - Add profile to pom.xml for compiling without BREE librariesv20120917-192807
| -rw-r--r-- | bundles/org.eclipse.equinox.io/pom.xml | 18 | ||||
| -rw-r--r-- | bundles/org.eclipse.equinox.util/pom.xml | 18 |
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> |
