Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Arthorne2013-01-07 15:27:42 +0000
committerJohn Arthorne2013-01-07 15:27:42 +0000
commitc85a0f56959b0c5ec2c8cc6b0446cf3b542af387 (patch)
tree7209d3f8f154531dc189795df26bdded0c9586d8 /bundles/org.eclipse.equinox.p2.transport.ecf
parent653220d15a926fdc19c646b4c6860de66d3c3c53 (diff)
downloadrt.equinox.p2-c85a0f56959b0c5ec2c8cc6b0446cf3b542af387.tar.gz
rt.equinox.p2-c85a0f56959b0c5ec2c8cc6b0446cf3b542af387.tar.xz
rt.equinox.p2-c85a0f56959b0c5ec2c8cc6b0446cf3b542af387.zip
Bug 396091 - Merge in CBI patches from 4.2.2 into 4.3 (pom changes) for equinox.p2v20130107-152742
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.transport.ecf')
-rw-r--r--bundles/org.eclipse.equinox.p2.transport.ecf/pom.xml21
1 files changed, 20 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.transport.ecf/pom.xml b/bundles/org.eclipse.equinox.p2.transport.ecf/pom.xml
index 64d4babe3..4459f0cdb 100644
--- a/bundles/org.eclipse.equinox.p2.transport.ecf/pom.xml
+++ b/bundles/org.eclipse.equinox.p2.transport.ecf/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>org.eclipse.equinox.p2-parent</artifactId>
@@ -12,4 +12,23 @@
<artifactId>org.eclipse.equinox.p2.transport.ecf</artifactId>
<version>1.0.100-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-compiler-plugin</artifactId>
+ <configuration>
+ <!--
+ matching apparently invalid Juno bundle
+ Minimal BREE according to META-INF/MENIFEST.MF should be J2SE-1.4,
+ yet Juno was compiled with class version 49.0, i.e. Java 5+
+ Reported as https://bugs.eclipse.org/bugs/show_bug.cgi?id=386186
+ -->
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top