Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.log/pom.xml')
-rw-r--r--bundles/org.eclipse.equinox.log/pom.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.log/pom.xml b/bundles/org.eclipse.equinox.log/pom.xml
index f4b108556..1127deeae 100644
--- a/bundles/org.eclipse.equinox.log/pom.xml
+++ b/bundles/org.eclipse.equinox.log/pom.xml
@@ -23,4 +23,21 @@
<artifactId>org.eclipse.equinox.log</artifactId>
<version>1.2.300-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <configuration>
+ <!--
+ src/org/eclipse/equinox/log/internal/ExtendedLogEntryImpl.java
+ calls Thread.getId, which was introduced in JDK 1.5
+ -->
+ <executionEnvironment>J2SE-1.5</executionEnvironment>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
</project>

Back to the top