diff options
| author | Paul Webster | 2012-07-24 12:36:12 +0000 |
|---|---|---|
| committer | Thomas Watson | 2012-09-13 14:48:08 +0000 |
| commit | 7ff7d6e87f63204409c9f4fffc5dfa47f2a02b7e (patch) | |
| tree | ecd013225ba24d1fb7d7517662d1ee309679da21 | |
| parent | 0acc8b1bd54d183dedaa0f82255c97b9b9d7c4ac (diff) | |
| download | rt.equinox.framework-7ff7d6e87f63204409c9f4fffc5dfa47f2a02b7e.tar.gz rt.equinox.framework-7ff7d6e87f63204409c9f4fffc5dfa47f2a02b7e.tar.xz rt.equinox.framework-7ff7d6e87f63204409c9f4fffc5dfa47f2a02b7e.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.xml | 17 |
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> |
