Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ws Wiki" for change notification.
The following page has been changed by KelvinGoodson: http://wiki.apache.org/ws/Tuscany/TuscanyJava/SDOJavaReleaseSteps ------------------------------------------------------------------------------ </plugin> }}} + The incantation in a pom with equivalent effect to dkulps mvn javadoc:jar install seemed to be ... + {{{ + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <overview>${basedir}/src/main/java/commonj/sdo/overview.html</overview> + <version>2.0</version> + </configuration> + <executions> + <execution> + <id>package</id> + <phase>package</phase> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + + }}} + + It required the phase to be package rather than install before it would put the javadoc-jar into the repository (the command line version did this fine) + + I discovered this by looking at + http://svn.apache.org/viewvc/incubator/cxf/trunk/api/pom.xml?view=markup + --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
