Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix javadoc plugin #10

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,12 @@
<junit.version>3.8.2</junit.version>
<jaxb.api.version>3.0.1</jaxb.api.version>
<jaxb.impl.version>3.0.2</jaxb.impl.version>
<maven.javadoc.skip>false</maven.javadoc.skip>
</properties>

<!-- Dependencies -->
<dependencies>

<dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
Expand Down Expand Up @@ -81,7 +82,7 @@
<scope>test</scope>
</dependency>
</dependencies>

<!-- Plugins -->
<build>
<resources>
Expand Down Expand Up @@ -113,6 +114,18 @@
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<attach>true</attach>
<source>8</source>
<quiet>true</quiet>
<encoding>UTF-8</encoding>
<detectOfflineLinks>false</detectOfflineLinks>
<notimestamp>true</notimestamp>
<doclint>none</doclint>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

/**
* JAXB Annotation Reader for the JAXB RI context interface.
* <p/>
* <p>
* Used for introduction of annotations on bean classes which are not annotated
* for JAXB. Allows us to use JAXB (and hence JBossWS 2.x+) with unannotated
* interfaces.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,27 @@
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="Class">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlAccessorType" minOccurs="0"/>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlType" minOccurs="0"/>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlRootElement" minOccurs="0"/>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlTransient" minOccurs="0"/>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlJavaTypeAdapter" minOccurs="0"/>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}Field" maxOccurs="unbounded" minOccurs="0"/>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}Method" maxOccurs="unbounded" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
* {@code

* <complexType name="Class">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlAccessorType" minOccurs="0"/>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlType" minOccurs="0"/>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlRootElement" minOccurs="0"/>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlTransient" minOccurs="0"/>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlJavaTypeAdapter" minOccurs="0"/>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}Field" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}Method" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* </restriction>
* </complexContent>
* </complexType>
* }
* }
</pre>
*
*
*/
Expand Down Expand Up @@ -206,8 +210,10 @@ public void setXmlJavaTypeAdapter(XmlJavaTypeAdapterIntro value) {
* <p>
* For example, to add a new item, do as follows:
* <pre>
* {@code
* getField().add(newItem);
* </pre>
* }
</pre>
*
*
* <p>
Expand Down Expand Up @@ -235,8 +241,10 @@ public List<FieldIntroConfig> getField() {
* <p>
* For example, to add a new item, do as follows:
* <pre>
* {@code
* getMethod().add(newItem);
* </pre>
* }
</pre>
*
*
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,26 @@
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="class-member-intro-config">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlElement" minOccurs="0"/>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlAttribute" minOccurs="0"/>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlTransient" minOccurs="0"/>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlID" minOccurs="0"/>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlIDREF" minOccurs="0"/>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlElementWrapper" minOccurs="0"/>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlJavaTypeAdapter" minOccurs="0"/>
* &lt;/sequence>
* &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
* {@code
* <complexType name="class-member-intro-config">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlElement" minOccurs="0"/>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlAttribute" minOccurs="0"/>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlTransient" minOccurs="0"/>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlID" minOccurs="0"/>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlIDREF" minOccurs="0"/>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlElementWrapper" minOccurs="0"/>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}XmlJavaTypeAdapter" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* </restriction>
* </complexContent>
* </complexType>
* }
* }
</pre>
*
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,16 @@
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="Field">
* &lt;complexContent>
* &lt;extension base="{http://www.jboss.org/xsd/jaxb/intros}class-member-intro-config">
* &lt;/extension>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
* {@code
* <complexType name="Field">
* <complexContent>
* <extension base="{http://www.jboss.org/xsd/jaxb/intros}class-member-intro-config">
* </extension>
* </complexContent>
* </complexType>
* }
* }
</pre>
*
*
*/
Expand Down
28 changes: 16 additions & 12 deletions src/main/java/org/jboss/jaxb/intros/configmodel/JaxbIntros.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,19 @@
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element ref="{http://www.jboss.org/xsd/jaxb/intros}Class" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;attribute name="default-namespace" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
* {@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.jboss.org/xsd/jaxb/intros}Class" maxOccurs="unbounded"/>
* </sequence>
* <attribute name="default-namespace" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* </restriction>
* </complexContent>
* </complexType>
* }
</pre>
*
*
*/
Expand Down Expand Up @@ -64,8 +66,10 @@ public class JaxbIntros {
* <p>
* For example, to add a new item, do as follows:
* <pre>
* {@code
* getClazz().add(newItem);
* </pre>
* }
</pre>
*
*
* <p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,15 @@
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="Method">
* &lt;complexContent>
* &lt;extension base="{http://www.jboss.org/xsd/jaxb/intros}class-member-intro-config">
* &lt;/extension>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
* {@code
* <complexType name="Method">
* <complexContent>
* <extension base="{http://www.jboss.org/xsd/jaxb/intros}class-member-intro-config">
* </extension>
* </complexContent>
* </complexType>
* }
</pre>
*
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,26 @@
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="XmlAccessorType">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="value" default="NONE">
* &lt;simpleType>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
* &lt;enumeration value="PROPERTY"/>
* &lt;enumeration value="FIELD"/>
* &lt;enumeration value="PUBLIC_MEMBER"/>
* &lt;enumeration value="NONE"/>
* &lt;/restriction>
* &lt;/simpleType>
* &lt;/attribute>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
* {@code
* <complexType name="XmlAccessorType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="value" default="NONE">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
* <enumeration value="PROPERTY"/>
* <enumeration value="FIELD"/>
* <enumeration value="PUBLIC_MEMBER"/>
* <enumeration value="NONE"/>
* </restriction>
* </simpleType>
* </attribute>
* </restriction>
* </complexContent>
* </complexType>
* }
* }
</pre>
*
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,18 @@
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="XmlAttribute">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="##default" />
* &lt;attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* &lt;attribute name="namespace" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="##default" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
* {@code
* <complexType name="XmlAttribute">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="##default" />
* <attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <attribute name="namespace" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="##default" />
* </restriction>
* </complexContent>
* </complexType>
* }
</pre>
*
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,21 @@
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="XmlElement">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="##default" />
* &lt;attribute name="nillable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* &lt;attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* &lt;attribute name="namespace" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="##default" />
* &lt;attribute name="defaultValue" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* &lt;attribute name="type" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
* {@code
* <complexType name="XmlElement">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="##default" />
* <attribute name="nillable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <attribute name="namespace" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="##default" />
* <attribute name="defaultValue" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
* </restriction>
* </complexContent>
* </complexType>
* }
</pre>
*
*
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,19 @@
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="XmlElementWrapper">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="##default" />
* &lt;attribute name="namespace" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="##default" />
* &lt;attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* &lt;attribute name="nillable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
* {@code
* <complexType name="XmlElementWrapper">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="##default" />
* <attribute name="namespace" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" default="##default" />
* <attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <attribute name="nillable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* </restriction>
* </complexContent>
* </complexType>
* }
</pre>
*
*
*/
Expand Down
Loading
Loading