Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Webster2012-07-24 12:36:12 +0000
committerThomas Watson2012-09-12 14:09:50 +0000
commit469ff9b17181f70299113a1ba71cb5e559c7c670 (patch)
tree0e2598d6a74b1e2fcbbe3fc274343b618fbc9155
parentf4aeaeec0e9831e11d6c7ccb9c09e94c72358683 (diff)
downloadrt.equinox.framework-469ff9b17181f70299113a1ba71cb5e559c7c670.tar.gz
rt.equinox.framework-469ff9b17181f70299113a1ba71cb5e559c7c670.tar.xz
rt.equinox.framework-469ff9b17181f70299113a1ba71cb5e559c7c670.zip
Bug 378234 - CBI build should produce a comparable build output repo
Updated the compiler arguments for org.eclipse.osgi
-rw-r--r--bundles/org.eclipse.osgi/pom.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/bundles/org.eclipse.osgi/pom.xml b/bundles/org.eclipse.osgi/pom.xml
index c46d8fa9d..2d4cc44a6 100644
--- a/bundles/org.eclipse.osgi/pom.xml
+++ b/bundles/org.eclipse.osgi/pom.xml
@@ -24,4 +24,21 @@
<artifactId>org.eclipse.osgi</artifactId>
<version>3.8.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.5</source>
+ <target>jsr14</target>
+ <compilerArguments>
+ <inlineJSR/>
+ <enableJavadoc/>
+ <encoding>ISO-8859-1</encoding>
+ </compilerArguments>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top