diff options
author | Krzysztof Daniel | 2012-07-18 11:28:18 -0400 |
---|---|---|
committer | Paul Webster | 2012-09-12 10:36:04 -0400 |
commit | a1ab31bcf49000fcb88456f9d16b5a32c88940ba (patch) | |
tree | 9ea1e1b540d74f426f5df8cfac8ffb8e09742465 | |
parent | a7e4de553359935c24e5429f8b14db62efc5ef8f (diff) | |
download | eclipse.platform.common-a1ab31bcf49000fcb88456f9d16b5a32c88940ba.zip eclipse.platform.common-a1ab31bcf49000fcb88456f9d16b5a32c88940ba.tar.gz eclipse.platform.common-a1ab31bcf49000fcb88456f9d16b5a32c88940ba.tar.xz |
Bug 385410 - Build documentation using tycho - Part 1 org.eclispe.platform.doc.userv20120912-143604
-rw-r--r-- | bundles/org.eclipse.platform.doc.user/pom.xml | 37 |
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 0078fe6..bf2fb24 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>3.8.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> |