Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Daniel2012-07-18 15:28:18 +0000
committerPaul Webster2012-09-12 14:42:58 +0000
commitc373794a2493dc2959cd762208e2b01be2267dea (patch)
tree617a09b638712b78ee8d70d0e299a7f43ab217f2
parentacc922955f615e5d26d5d592b8827be129bed2ec (diff)
downloadeclipse.platform.common-c373794a2493dc2959cd762208e2b01be2267dea.tar.gz
eclipse.platform.common-c373794a2493dc2959cd762208e2b01be2267dea.tar.xz
eclipse.platform.common-c373794a2493dc2959cd762208e2b01be2267dea.zip
Bug 385410 - Build documentation using tycho - Part 1 org.eclispe.platform.doc.userv20120912-144258
-rw-r--r--bundles/org.eclipse.platform.doc.user/pom.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/bundles/org.eclipse.platform.doc.user/pom.xml b/bundles/org.eclipse.platform.doc.user/pom.xml
index ede30e5c2..4e97765de 100644
--- a/bundles/org.eclipse.platform.doc.user/pom.xml
+++ b/bundles/org.eclipse.platform.doc.user/pom.xml
@@ -23,4 +23,41 @@
<artifactId>org.eclipse.platform.doc.user</artifactId>
<version>4.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-eclipserun-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <argLine>-Dhelp.lucene.tokenizer=standard</argLine>
+ <appArgLine>-application org.eclipse.ant.core.antRunner -buildfile customBuildCallbacks.xml build.index</appArgLine>
+ <dependencies>
+ <dependency>
+ <artifactId>org.eclipse.ant.core</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>org.apache.ant</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ <dependency>
+ <artifactId>org.eclipse.help.base</artifactId>
+ <type>eclipse-plugin</type>
+ </dependency>
+ </dependencies>
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>eclipse-run</goal>
+ </goals>
+ <phase>compile</phase>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
</project>

Back to the top