Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'builds/org.eclipse.emf.edapt.releng/pom.xml')
-rw-r--r--builds/org.eclipse.emf.edapt.releng/pom.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/builds/org.eclipse.emf.edapt.releng/pom.xml b/builds/org.eclipse.emf.edapt.releng/pom.xml
index 6c019a4..a2545fb 100644
--- a/builds/org.eclipse.emf.edapt.releng/pom.xml
+++ b/builds/org.eclipse.emf.edapt.releng/pom.xml
@@ -13,6 +13,8 @@
<eclipse-jarsigner-version>1.1.0</eclipse-jarsigner-version>
<maven-surefire-version>2.18.1</maven-surefire-version>
<junit-version>4.12</junit-version>
+ <javadoc-version>2.10.3</javadoc-version>
+ <javadoc-title>Edapt 1.1.1 API</javadoc-title>
</properties>
<profiles>
@@ -100,6 +102,20 @@
<artifactId>tycho-versions-plugin</artifactId>
<version>${tycho-version}</version>
</plugin>
+
+ <!-- Javadoc -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>${javadoc-version}</version>
+ <configuration>
+ <doctitle>${javadoc-title}</doctitle>
+ <show>protected</show>
+ <show>public</show>
+ <nohelp>true</nohelp>
+ <excludePackageNames>*.test.*:*.tests.*:*.library.*:*.statemachine.*</excludePackageNames>
+ </configuration>
+ </plugin>
</plugins>
</build>

Back to the top