Feature #2326

Deploy Sources/Javadoc

Added by P. Holthaus almost 9 years ago. Updated almost 9 years ago.

Status:RejectedStart date:06/16/2015
Priority:NormalDue date:
Assignee:J. Wienke% Done:

0%

Category:java
Target version:Robotics Service Bus - rsb-0.12

Description

Would it make sense to deploy javadoc and sources for rst? One could for example alter pom.xml like this:

<build>
<plugins>
<plugin>
 <groupId>org.apache.maven.plugins</groupId>
 <artifactId>maven-source-plugin</artifactId>
 <version>2.4</version>
 <executions>
  <execution>
   <id>attach-sources</id>
   <goals>
    <goal>jar</goal>
   </goals>
  </execution>
 </executions>
</plugin>
<plugin>
 <groupId>org.apache.maven.plugins</groupId>
 <artifactId>maven-javadoc-plugin</artifactId>
 <version>2.10.3</version>
 <executions>
  <execution>
   <id>attach-javadocs</id>
   <goals>
    <goal>jar</goal>
   </goals>
  </execution>
 </executions>
</plugin>
</plugins>
</build>

History

#1 Updated by J. Wienke almost 9 years ago

  • Status changed from New to Rejected

Since everything is generated code, without nice docs, there is nothing to learn from that.

Also available in: Atom PDF