Skip to content

Commit

Permalink
- excluded source build from Maven
Browse files Browse the repository at this point in the history
- added JavaDoc build to Maven
  • Loading branch information
Fabian Hueske committed May 16, 2011
1 parent aac112d commit 54eb0ec
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
14 changes: 9 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -260,12 +260,12 @@
</reportSets>
</plugin>

<!--
<plugin> generation of JavaDoc
<!-- TEST ME -->
<plugin>
<!-- generation of JavaDoc -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <version>2.5</version>
</plugin>
-->
</plugin>

<plugin>
<!-- style checker -->
Expand Down Expand Up @@ -339,12 +339,16 @@
<goals>
<goal>aggregate-jar</goal>
</goals>
<phase>site</phase>
<phase>package</phase>
<configuration>
<quiet>true</quiet>
</configuration>
</execution>
</executions>
<configuration>
<!-- exclude example classes from JavaDoc -->
<excludePackageNames>eu.stratosphere.nephele.example.*:eu.stratosphere.pact.example.*</excludePackageNames>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
Expand Down
4 changes: 3 additions & 1 deletion stratosphere-dist/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,10 @@
<configuration>
<descriptors>
<descriptor>src/main/assemblies/bin.xml</descriptor>
<!--
<descriptor>src/main/assemblies/src.xml</descriptor>
</descriptors>
-->
</descriptors>
</configuration>
</plugin>
</plugins>
Expand Down
4 changes: 2 additions & 2 deletions stratosphere-dist/src/main/assemblies/bin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
<fileSet>
<!-- copy JavaDocs -->
<!--
<directory>../target/apidocs</directory>
-->
<directory>../target/apidocs</directory
-->
<directory>../target</directory>
<includes>
<include>stratosphere-*-javadoc.jar</include>
Expand Down
2 changes: 1 addition & 1 deletion stratosphere-dist/src/main/assemblies/src.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@
<!-- copy JavaDocs -->
<!--
<directory>../target/apidocs</directory>
-->
<directory>../target</directory>
<includes>
<include>stratosphere-*-javadoc.jar</include>
</includes>
<outputDirectory>docs/javadoc</outputDirectory>
<fileMode>0644</fileMode>
-->
</fileSet>

<fileSet>
Expand Down

0 comments on commit 54eb0ec

Please sign in to comment.