You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by bu...@apache.org on 2013/03/03 18:25:32 UTC

svn commit: r852814 [2/2] - in /websites/staging/maven/trunk/content: ./ xsd/

Modified: websites/staging/maven/trunk/content/xsd/lifecycle-1.0.0.xsd
==============================================================================
--- websites/staging/maven/trunk/content/xsd/lifecycle-1.0.0.xsd (original)
+++ websites/staging/maven/trunk/content/xsd/lifecycle-1.0.0.xsd Sun Mar  3 17:25:31 2013
@@ -0,0 +1,119 @@
+<?xml version="1.0"?>
+<!-- =================== DO NOT EDIT THIS FILE ====================         -->
+<!-- Generated by Modello 1.0.1 on 2009-06-16 23:36:47,                     -->
+<!-- any modifications will be overwritten.                                 -->
+<!-- ==============================================================         -->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" xmlns="http://maven.apache.org/LIFECYCLE/1.0.0" targetNamespace="http://maven.apache.org/LIFECYCLE/1.0.0">
+  <xs:element name="lifecycles" type="LifecycleConfiguration">
+    <xs:annotation>
+      <xs:documentation source="version">1.0.0</xs:documentation>
+      <xs:documentation source="description">Root element of the lifecycle.xml file.</xs:documentation>
+    </xs:annotation>
+  </xs:element>
+  <xs:complexType name="LifecycleConfiguration">
+    <xs:annotation>
+      <xs:documentation source="version">1.0.0</xs:documentation>
+      <xs:documentation source="description">Root element of the lifecycle.xml file.</xs:documentation>
+    </xs:annotation>
+    <xs:sequence>
+      <xs:element minOccurs="0" name="lifecycle" type="Lifecycle" maxOccurs="unbounded">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+        </xs:annotation>
+      </xs:element>
+    </xs:sequence>
+  </xs:complexType>
+  <xs:complexType name="Lifecycle">
+    <xs:annotation>
+      <xs:documentation source="version">1.0.0</xs:documentation>
+      <xs:documentation source="description">
+        A custom lifecycle mapping definition.
+      </xs:documentation>
+    </xs:annotation>
+    <xs:all>
+      <xs:element minOccurs="0" name="id" type="xs:string">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+          <xs:documentation source="description">The ID of this lifecycle, for identification in the mojo descriptor.</xs:documentation>
+        </xs:annotation>
+      </xs:element>
+      <xs:element minOccurs="0" name="phases">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+          <xs:documentation source="description">The phase mappings for this lifecycle.</xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="phase" minOccurs="0" maxOccurs="unbounded" type="Phase"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+    </xs:all>
+  </xs:complexType>
+  <xs:complexType name="Phase">
+    <xs:annotation>
+      <xs:documentation source="version">1.0.0</xs:documentation>
+      <xs:documentation source="description">A phase mapping definition.</xs:documentation>
+    </xs:annotation>
+    <xs:all>
+      <xs:element minOccurs="0" name="id" type="xs:string">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+          <xs:documentation source="description">The ID of this phase, eg &lt;code&gt;generate-sources&lt;/code&gt;.</xs:documentation>
+        </xs:annotation>
+      </xs:element>
+      <xs:element minOccurs="0" name="executions">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+          <xs:documentation source="description">The goals to execute within the phase.</xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="execution" minOccurs="0" maxOccurs="unbounded" type="Execution"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element minOccurs="0" name="configuration">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+          <xs:documentation source="description">Configuration to pass to all goals run in this phase.</xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+          <xs:sequence>
+            <xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+    </xs:all>
+  </xs:complexType>
+  <xs:complexType name="Execution">
+    <xs:annotation>
+      <xs:documentation source="version">1.0.0</xs:documentation>
+      <xs:documentation source="description">A set of goals to execute.</xs:documentation>
+    </xs:annotation>
+    <xs:all>
+      <xs:element minOccurs="0" name="configuration">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+          <xs:documentation source="description">Configuration to pass to the goals.</xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+          <xs:sequence>
+            <xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element minOccurs="0" name="goals">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+          <xs:documentation source="description">The goals to execute.</xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="goal" minOccurs="0" maxOccurs="unbounded" type="xs:string"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+    </xs:all>
+  </xs:complexType>
+</xs:schema>
\ No newline at end of file

Modified: websites/staging/maven/trunk/content/xsd/remote-resources-1.1.0.xsd
==============================================================================
--- websites/staging/maven/trunk/content/xsd/remote-resources-1.1.0.xsd (original)
+++ websites/staging/maven/trunk/content/xsd/remote-resources-1.1.0.xsd Sun Mar  3 17:25:31 2013
@@ -0,0 +1,42 @@
+<?xml version="1.0"?>
+<!-- =================== DO NOT EDIT THIS FILE ====================         -->
+<!-- Generated by Modello 1.4.1 on 2011-02-27 20:46:21,                     -->
+<!-- any modifications will be overwritten.                                 -->
+<!-- ==============================================================         -->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" xmlns="http://maven.apache.org/remote-resources/1.1.0" targetNamespace="http://maven.apache.org/remote-resources/1.1.0">
+  <xs:element name="remoteResourcesBundle" type="RemoteResourcesBundle">
+    <xs:annotation>
+      <xs:documentation source="version">1.1.0</xs:documentation>
+      <xs:documentation source="description">Root element of the remote-resources.xml file.</xs:documentation>
+    </xs:annotation>
+  </xs:element>
+  <xs:complexType name="RemoteResourcesBundle">
+    <xs:annotation>
+      <xs:documentation source="version">1.1.0</xs:documentation>
+      <xs:documentation source="description">Root element of the remote-resources.xml file.</xs:documentation>
+    </xs:annotation>
+    <xs:all>
+      <xs:element minOccurs="0" name="remoteResources">
+        <xs:annotation>
+          <xs:documentation source="version">1.1.0</xs:documentation>
+          <xs:documentation source="description">
+            Remote resources that are contained in a remote resources bundle.
+          </xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="remoteResource" minOccurs="0" maxOccurs="unbounded" type="xs:string"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+      <xs:element minOccurs="0" name="sourceEncoding" type="xs:string">
+        <xs:annotation>
+          <xs:documentation source="version">1.1.0</xs:documentation>
+          <xs:documentation source="description">
+            Source encoding of the remote resources contained in the bundle.
+          </xs:documentation>
+        </xs:annotation>
+      </xs:element>
+    </xs:all>
+  </xs:complexType>
+</xs:schema>
\ No newline at end of file

Modified: websites/staging/maven/trunk/content/xsd/supplemental-model-1.0.0.xsd
==============================================================================
--- websites/staging/maven/trunk/content/xsd/supplemental-model-1.0.0.xsd (original)
+++ websites/staging/maven/trunk/content/xsd/supplemental-model-1.0.0.xsd Sun Mar  3 17:25:31 2013
@@ -0,0 +1,46 @@
+<?xml version="1.0"?>
+<!-- =================== DO NOT EDIT THIS FILE ====================         -->
+<!-- Generated by Modello 1.4.1 on 2011-02-27 20:46:21,                     -->
+<!-- any modifications will be overwritten.                                 -->
+<!-- ==============================================================         -->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" xmlns="http://maven.apache.org/supplemental-model/1.0.0" targetNamespace="http://maven.apache.org/supplemental-model/1.0.0">
+  <xs:element name="supplementalDataModels" type="SupplementalDataModel">
+    <xs:annotation>
+      <xs:documentation source="version">1.0.0</xs:documentation>
+      <xs:documentation source="description">Root element of the supplemental-models.xml file.</xs:documentation>
+    </xs:annotation>
+  </xs:element>
+  <xs:complexType name="SupplementalDataModel">
+    <xs:annotation>
+      <xs:documentation source="version">1.0.0</xs:documentation>
+      <xs:documentation source="description">Root element of the supplemental-models.xml file.</xs:documentation>
+    </xs:annotation>
+    <xs:sequence>
+      <xs:element minOccurs="0" name="supplement" type="Supplement" maxOccurs="unbounded">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+          <xs:documentation source="description">Snippets of POM xml files used to supplement the data model.</xs:documentation>
+        </xs:annotation>
+      </xs:element>
+    </xs:sequence>
+  </xs:complexType>
+  <xs:complexType name="Supplement">
+    <xs:annotation>
+      <xs:documentation source="version">1.0.0</xs:documentation>
+      <xs:documentation source="description">A single supplement</xs:documentation>
+    </xs:annotation>
+    <xs:all>
+      <xs:element minOccurs="0" name="project">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+          <xs:documentation source="description">Snippets of POM xml files used to supplement the data model.</xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+          <xs:sequence>
+            <xs:any minOccurs="0" maxOccurs="unbounded" processContents="skip"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+    </xs:all>
+  </xs:complexType>
+</xs:schema>
\ No newline at end of file

Modified: websites/staging/maven/trunk/content/xsd/verifications-1.0.0.xsd
==============================================================================
--- websites/staging/maven/trunk/content/xsd/verifications-1.0.0.xsd (original)
+++ websites/staging/maven/trunk/content/xsd/verifications-1.0.0.xsd Sun Mar  3 17:25:31 2013
@@ -0,0 +1,63 @@
+<?xml version="1.0"?>
+<!-- =================== DO NOT EDIT THIS FILE ====================         -->
+<!-- Generated by Modello 1.0.1 on 2010-01-30 17:55:22,                     -->
+<!-- any modifications will be overwritten.                                 -->
+<!-- ==============================================================         -->
+<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" xmlns="http://maven.apache.org/verifications/1.0.0" targetNamespace="http://maven.apache.org/verifications/1.0.0">
+  <xs:element name="verifications" type="Verifications">
+    <xs:annotation>
+      <xs:documentation source="version">1.0.0</xs:documentation>
+      <xs:documentation source="description">Root element of the verifications file.</xs:documentation>
+    </xs:annotation>
+  </xs:element>
+  <xs:complexType name="Verifications">
+    <xs:annotation>
+      <xs:documentation source="version">1.0.0</xs:documentation>
+      <xs:documentation source="description">Root element of the verifications file.</xs:documentation>
+    </xs:annotation>
+    <xs:all>
+      <xs:element minOccurs="0" name="files">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+          <xs:documentation source="description">
+            List of files and directories to check.
+          </xs:documentation>
+        </xs:annotation>
+        <xs:complexType>
+          <xs:sequence>
+            <xs:element name="file" minOccurs="0" maxOccurs="unbounded" type="File"/>
+          </xs:sequence>
+        </xs:complexType>
+      </xs:element>
+    </xs:all>
+  </xs:complexType>
+  <xs:complexType name="File">
+    <xs:annotation>
+      <xs:documentation source="version">1.0.0</xs:documentation>
+    </xs:annotation>
+    <xs:all>
+      <xs:element minOccurs="0" name="location" type="xs:string">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+          <xs:documentation source="description">Location of the file or directory to check.</xs:documentation>
+        </xs:annotation>
+      </xs:element>
+      <xs:element minOccurs="0" name="contains" type="xs:string">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+          <xs:documentation source="description">Check the content against this regular expression.</xs:documentation>
+        </xs:annotation>
+      </xs:element>
+      <xs:element minOccurs="0" name="exists" type="xs:boolean" default="true">
+        <xs:annotation>
+          <xs:documentation source="version">1.0.0</xs:documentation>
+          <xs:documentation source="description">
+            When this is set to &lt;code&gt;true&lt;/code&gt; the plugin checks that the
+            file or directory exists. When set to &lt;code&gt;false&lt;/code&gt; it checks
+            that the file or directory does &lt;strong&gt;not&lt;/strong&gt; exist.
+          </xs:documentation>
+        </xs:annotation>
+      </xs:element>
+    </xs:all>
+  </xs:complexType>
+</xs:schema>
\ No newline at end of file