Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMat Booth2016-11-18 13:16:41 +0000
committerMat Booth2016-11-21 14:56:41 +0000
commitb7c61709523bf207e04be201f6925e06eb2c76ef (patch)
tree2b862c25788913d473aa8bf856d12cda6b44db80 /releng/org.eclipse.ecf.releng.repository
parent85613c8ec3473d4624e20cb53751f98e0831e289 (diff)
downloadorg.eclipse.ecf-b7c61709523bf207e04be201f6925e06eb2c76ef.tar.gz
org.eclipse.ecf-b7c61709523bf207e04be201f6925e06eb2c76ef.tar.xz
org.eclipse.ecf-b7c61709523bf207e04be201f6925e06eb2c76ef.zip
Bug 507757 - [Maven] allow generating javadocs as part of the tycho build
Fixes incorrect source encoding and configures the javadoc plugin to generate at least the same javadocs as the old build. Change-Id: If0066911c1b9b4747fd5ce897f3d07f1daa58e57 Signed-off-by: Mat Booth <mat.booth@redhat.com>
Diffstat (limited to 'releng/org.eclipse.ecf.releng.repository')
-rw-r--r--releng/org.eclipse.ecf.releng.repository/pom.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/releng/org.eclipse.ecf.releng.repository/pom.xml b/releng/org.eclipse.ecf.releng.repository/pom.xml
index 07308957d..7a0fbb59e 100644
--- a/releng/org.eclipse.ecf.releng.repository/pom.xml
+++ b/releng/org.eclipse.ecf.releng.repository/pom.xml
@@ -13,4 +13,22 @@
<packaging>eclipse-repository</packaging>
<name>ECF p2 Repository</name>
+
+ <build>
+ <plugins>
+ <plugin>
+ <!-- Avoid duplicate execution of clean when generating javadocs, see ebz#399756 -->
+ <artifactId>maven-clean-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>default-clean-1</id>
+ <phase>initialize</phase>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top