Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.help.ui')
-rw-r--r--org.eclipse.mylyn.help.ui/build-helper.xml8
-rw-r--r--org.eclipse.mylyn.help.ui/pom.xml21
2 files changed, 27 insertions, 2 deletions
diff --git a/org.eclipse.mylyn.help.ui/build-helper.xml b/org.eclipse.mylyn.help.ui/build-helper.xml
index 52d30d5d8..a8a0c6465 100644
--- a/org.eclipse.mylyn.help.ui/build-helper.xml
+++ b/org.eclipse.mylyn.help.ui/build-helper.xml
@@ -18,7 +18,10 @@
<property name="mylyn.wiki.url.base" value="${mylyn.help.doc.url.base}/Mylyn"/>
<property name="imageFolder" value="images"/>
- <path id="tasks.classpath" path="bin"/>
+ <path id="wikitext.tasks.classpath">
+ <pathelement path="${wikitext.tasks.classpath.path}"/>
+ </path>
+ <!--
<path id="wikitext.tasks.classpath">
<pathelement location="../org.eclipse.mylyn.wikitext.core/@dot"/>
<pathelement location="../org.eclipse.mylyn.wikitext.core/bin"/>
@@ -27,7 +30,8 @@
<pathelement location="../org.eclipse.mylyn.wikitext.mediawiki.core/bin"/>
<pathelement location="../org.eclipse.mylyn.wikitext.mediawiki.core/bin_ant"/>
</path>
-
+ -->
+
<taskdef classpathref="wikitext.tasks.classpath" resource="org/eclipse/mylyn/internal/wikitext/mediawiki/core/tasks/tasks.properties"/>
<taskdef classpathref="wikitext.tasks.classpath" resource="org/eclipse/mylyn/wikitext/core/util/anttask/tasks.properties"/>
diff --git a/org.eclipse.mylyn.help.ui/pom.xml b/org.eclipse.mylyn.help.ui/pom.xml
index 6e8f2e4ec..c4fc1edef 100644
--- a/org.eclipse.mylyn.help.ui/pom.xml
+++ b/org.eclipse.mylyn.help.ui/pom.xml
@@ -13,6 +13,27 @@
<packaging>eclipse-plugin</packaging>
<build>
<plugins>
+ <!--
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.6</version>
+ <executions>
+ <execution>
+ <phase>generate-sources</phase>
+ <configuration>
+ <target>
+ <property name="wikitext.tasks.classpath.path" refid="maven.compile.classpath"/>
+ <ant target="all" inheritRefs="true" antfile="build-helper.xml"/>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ -->
<plugin>
<groupId>org.sonatype.tycho</groupId>
<artifactId>maven-osgi-source-plugin</artifactId>

Back to the top