All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.maven.model.maven2.Build Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.04.14 at 01:47:18 PM UTC 
//


package org.sonar.maven.model.maven2;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.sonar.maven.model.LocatedAttribute;
import org.sonar.maven.model.LocatedAttributeAdapter;
import org.sonar.maven.model.LocatedTreeImpl;


/**
 * 
 *         
 *         The <build> element contains informations required to build the project.
 *         Default values are defined in Super POM.
 *         
 *       
 * 
 * 

Java class for Build complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Build">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="sourceDirectory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="scriptSourceDirectory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="testSourceDirectory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="outputDirectory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="testOutputDirectory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="extensions" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="extension" type="{http://maven.apache.org/POM/4.0.0}Extension" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="defaultGoal" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="resources" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="resource" type="{http://maven.apache.org/POM/4.0.0}Resource" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="testResources" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="testResource" type="{http://maven.apache.org/POM/4.0.0}Resource" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="directory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="finalName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="filters" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="filter" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="pluginManagement" type="{http://maven.apache.org/POM/4.0.0}PluginManagement" minOccurs="0"/>
 *         <element name="plugins" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="plugin" type="{http://maven.apache.org/POM/4.0.0}Plugin" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Build", propOrder = { }) public class Build extends LocatedTreeImpl { @XmlElement(type = String.class) @XmlJavaTypeAdapter(LocatedAttributeAdapter.class) protected LocatedAttribute sourceDirectory; @XmlElement(type = String.class) @XmlJavaTypeAdapter(LocatedAttributeAdapter.class) protected LocatedAttribute scriptSourceDirectory; @XmlElement(type = String.class) @XmlJavaTypeAdapter(LocatedAttributeAdapter.class) protected LocatedAttribute testSourceDirectory; @XmlElement(type = String.class) @XmlJavaTypeAdapter(LocatedAttributeAdapter.class) protected LocatedAttribute outputDirectory; @XmlElement(type = String.class) @XmlJavaTypeAdapter(LocatedAttributeAdapter.class) protected LocatedAttribute testOutputDirectory; protected Build.Extensions extensions; @XmlElement(type = String.class) @XmlJavaTypeAdapter(LocatedAttributeAdapter.class) protected LocatedAttribute defaultGoal; protected Build.Resources resources; protected Build.TestResources testResources; @XmlElement(type = String.class) @XmlJavaTypeAdapter(LocatedAttributeAdapter.class) protected LocatedAttribute directory; @XmlElement(type = String.class) @XmlJavaTypeAdapter(LocatedAttributeAdapter.class) protected LocatedAttribute finalName; protected Build.Filters filters; protected PluginManagement pluginManagement; protected Build.Plugins plugins; /** * Gets the value of the sourceDirectory property. * * @return * possible object is * {@link String } * */ public LocatedAttribute getSourceDirectory() { return sourceDirectory; } /** * Sets the value of the sourceDirectory property. * * @param value * allowed object is * {@link String } * */ public void setSourceDirectory(LocatedAttribute value) { this.sourceDirectory = value; } /** * Gets the value of the scriptSourceDirectory property. * * @return * possible object is * {@link String } * */ public LocatedAttribute getScriptSourceDirectory() { return scriptSourceDirectory; } /** * Sets the value of the scriptSourceDirectory property. * * @param value * allowed object is * {@link String } * */ public void setScriptSourceDirectory(LocatedAttribute value) { this.scriptSourceDirectory = value; } /** * Gets the value of the testSourceDirectory property. * * @return * possible object is * {@link String } * */ public LocatedAttribute getTestSourceDirectory() { return testSourceDirectory; } /** * Sets the value of the testSourceDirectory property. * * @param value * allowed object is * {@link String } * */ public void setTestSourceDirectory(LocatedAttribute value) { this.testSourceDirectory = value; } /** * Gets the value of the outputDirectory property. * * @return * possible object is * {@link String } * */ public LocatedAttribute getOutputDirectory() { return outputDirectory; } /** * Sets the value of the outputDirectory property. * * @param value * allowed object is * {@link String } * */ public void setOutputDirectory(LocatedAttribute value) { this.outputDirectory = value; } /** * Gets the value of the testOutputDirectory property. * * @return * possible object is * {@link String } * */ public LocatedAttribute getTestOutputDirectory() { return testOutputDirectory; } /** * Sets the value of the testOutputDirectory property. * * @param value * allowed object is * {@link String } * */ public void setTestOutputDirectory(LocatedAttribute value) { this.testOutputDirectory = value; } /** * Gets the value of the extensions property. * * @return * possible object is * {@link Build.Extensions } * */ public Build.Extensions getExtensions() { return extensions; } /** * Sets the value of the extensions property. * * @param value * allowed object is * {@link Build.Extensions } * */ public void setExtensions(Build.Extensions value) { this.extensions = value; } /** * Gets the value of the defaultGoal property. * * @return * possible object is * {@link String } * */ public LocatedAttribute getDefaultGoal() { return defaultGoal; } /** * Sets the value of the defaultGoal property. * * @param value * allowed object is * {@link String } * */ public void setDefaultGoal(LocatedAttribute value) { this.defaultGoal = value; } /** * Gets the value of the resources property. * * @return * possible object is * {@link Build.Resources } * */ public Build.Resources getResources() { return resources; } /** * Sets the value of the resources property. * * @param value * allowed object is * {@link Build.Resources } * */ public void setResources(Build.Resources value) { this.resources = value; } /** * Gets the value of the testResources property. * * @return * possible object is * {@link Build.TestResources } * */ public Build.TestResources getTestResources() { return testResources; } /** * Sets the value of the testResources property. * * @param value * allowed object is * {@link Build.TestResources } * */ public void setTestResources(Build.TestResources value) { this.testResources = value; } /** * Gets the value of the directory property. * * @return * possible object is * {@link String } * */ public LocatedAttribute getDirectory() { return directory; } /** * Sets the value of the directory property. * * @param value * allowed object is * {@link String } * */ public void setDirectory(LocatedAttribute value) { this.directory = value; } /** * Gets the value of the finalName property. * * @return * possible object is * {@link String } * */ public LocatedAttribute getFinalName() { return finalName; } /** * Sets the value of the finalName property. * * @param value * allowed object is * {@link String } * */ public void setFinalName(LocatedAttribute value) { this.finalName = value; } /** * Gets the value of the filters property. * * @return * possible object is * {@link Build.Filters } * */ public Build.Filters getFilters() { return filters; } /** * Sets the value of the filters property. * * @param value * allowed object is * {@link Build.Filters } * */ public void setFilters(Build.Filters value) { this.filters = value; } /** * Gets the value of the pluginManagement property. * * @return * possible object is * {@link PluginManagement } * */ public PluginManagement getPluginManagement() { return pluginManagement; } /** * Sets the value of the pluginManagement property. * * @param value * allowed object is * {@link PluginManagement } * */ public void setPluginManagement(PluginManagement value) { this.pluginManagement = value; } /** * Gets the value of the plugins property. * * @return * possible object is * {@link Build.Plugins } * */ public Build.Plugins getPlugins() { return plugins; } /** * Sets the value of the plugins property. * * @param value * allowed object is * {@link Build.Plugins } * */ public void setPlugins(Build.Plugins value) { this.plugins = value; } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="extension" type="{http://maven.apache.org/POM/4.0.0}Extension" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "extensions" }) public static class Extensions extends LocatedTreeImpl { @XmlElement(name = "extension") protected List extensions; /** * Gets the value of the extensions property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the extensions property. * *

* For example, to add a new item, do as follows: *

         *    getExtensions().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Extension } * * */ public List getExtensions() { if (extensions == null) { extensions = new ArrayList(); } return this.extensions; } } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="filter" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "filters" }) public static class Filters extends LocatedTreeImpl { @XmlElement(name = "filter", type = String.class) @XmlJavaTypeAdapter(LocatedAttributeAdapter.class) protected List filters; /** * Gets the value of the filters property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the filters property. * *

* For example, to add a new item, do as follows: *

         *    getFilters().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getFilters() { if (filters == null) { filters = new ArrayList(); } return this.filters; } } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="plugin" type="{http://maven.apache.org/POM/4.0.0}Plugin" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "plugins" }) public static class Plugins extends LocatedTreeImpl { @XmlElement(name = "plugin") protected List plugins; /** * Gets the value of the plugins property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the plugins property. * *

* For example, to add a new item, do as follows: *

         *    getPlugins().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Plugin } * * */ public List getPlugins() { if (plugins == null) { plugins = new ArrayList(); } return this.plugins; } } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="resource" type="{http://maven.apache.org/POM/4.0.0}Resource" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "resources" }) public static class Resources extends LocatedTreeImpl { @XmlElement(name = "resource") protected List resources; /** * Gets the value of the resources property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the resources property. * *

* For example, to add a new item, do as follows: *

         *    getResources().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Resource } * * */ public List getResources() { if (resources == null) { resources = new ArrayList(); } return this.resources; } } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="testResource" type="{http://maven.apache.org/POM/4.0.0}Resource" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "testResources" }) public static class TestResources extends LocatedTreeImpl { @XmlElement(name = "testResource") protected List testResources; /** * Gets the value of the testResources property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the testResources property. * *

* For example, to add a new item, do as follows: *

         *    getTestResources().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Resource } * * */ public List getTestResources() { if (testResources == null) { testResources = new ArrayList(); } return this.testResources; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy