Author: veithen Date: Mon Mar 19 20:12:03 2012 New Revision: 1302632 URL: http://svn.apache.org/viewvc?rev=1302632&view=rev Log: Started to implement the Maven plugin documentation recommendations for the maven-wsdl2java-plugin.
Added: axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/ axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/apt/ axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/apt/index.apt axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/site.xml (with props) Modified: axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/pom.xml Modified: axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/pom.xml URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/pom.xml?rev=1302632&r1=1302631&r2=1302632&view=diff ============================================================================== --- axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/pom.xml (original) +++ axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/pom.xml Mon Mar 19 20:12:03 2012 @@ -60,6 +60,15 @@ <artifactId>maven-plugin-plugin</artifactId> <version>2.9</version> </plugin> + <plugin> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>2.4</version> + <reportSets> + <reportSet> + <reports/> + </reportSet> + </reportSets> + </plugin> </plugins> </reporting> </project> Added: axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/apt/index.apt URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/apt/index.apt?rev=1302632&view=auto ============================================================================== --- axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/apt/index.apt (added) +++ axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/apt/index.apt Mon Mar 19 20:12:03 2012 @@ -0,0 +1,36 @@ +~~ Licensed to the Apache Software Foundation (ASF) under one +~~ or more contributor license agreements. See the NOTICE file +~~ distributed with this work for additional information +~~ regarding copyright ownership. The ASF licenses this file +~~ to you under the Apache License, Version 2.0 (the +~~ "License"); you may not use this file except in compliance +~~ with the License. You may obtain a copy of the License at +~~ +~~ http://www.apache.org/licenses/LICENSE-2.0 +~~ +~~ Unless required by applicable law or agreed to in writing, +~~ software distributed under the License is distributed on an +~~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +~~ KIND, either express or implied. See the License for the +~~ specific language governing permissions and limitations +~~ under the License. + + ------------ + Introduction + ------------ + +maven-wsdl2java-plugin + + The wsdl2java plugin is used to generate client and/or server side Java artifacts from a WSDL file. + +* Goals Overview + + The plugin has two goals. They are essentially identical, except for the build phase in which they + are used: + + * {{{./wsdl2java-mojo.html}wsdl2java:wsdl2java}} is used to generate code that will be compiled during + the <<<compile>>> phase. + + * {{{./wsdl2java-test-mojo.html}wsdl2java:wsdl2java-test}} is used to generate code that will be + compiled during the <<<test-compile>>> phase. Execution of the goal may be skipped if tests are + disabled. Added: axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/site.xml URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/site.xml?rev=1302632&view=auto ============================================================================== --- axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/site.xml (added) +++ axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/site.xml Mon Mar 19 20:12:03 2012 @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + ~ Licensed to the Apache Software Foundation (ASF) under one + ~ or more contributor license agreements. See the NOTICE file + ~ distributed with this work for additional information + ~ regarding copyright ownership. The ASF licenses this file + ~ to you under the Apache License, Version 2.0 (the + ~ "License"); you may not use this file except in compliance + ~ with the License. You may obtain a copy of the License at + ~ + ~ http://www.apache.org/licenses/LICENSE-2.0 + ~ + ~ Unless required by applicable law or agreed to in writing, + ~ software distributed under the License is distributed on an + ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + ~ KIND, either express or implied. See the License for the + ~ specific language governing permissions and limitations + ~ under the License. + --> +<project> + <body> + <menu name="Overview"> + <item name="Introduction" href="index.html"/> + <item name="Goals" href="plugin-info.html"/> + </menu> + </body> +</project> Propchange: axis/axis1/java/trunk/maven/maven-wsdl2java-plugin/src/site/site.xml ------------------------------------------------------------------------------ svn:eol-style = native