Skip to content

Commit

Permalink
update xsd to match generated xmls (#528)
Browse files Browse the repository at this point in the history
* fix xsd to match generated xmls

* revert whitespace changes

---------

Co-authored-by: Marius Kruger <marius.kruger@netstock.co>
  • Loading branch information
amanica and Marius Kruger committed Nov 15, 2023
1 parent d28e15a commit 389a4a3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/main/resources/org/codehaus/mojo/license/licenses.xsd
Expand Up @@ -22,17 +22,23 @@
-->

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://mojo.codehaus.org/" xmlns="http://mojo.codehaus.org/"
targetNamespace="" xmlns=""
elementFormDefault="qualified" >

<xs:element name="licenseSummary">
<xs:complexType>
<xs:sequence>
<xs:element name="dependency" type="Dependency" minOccurs="0" />
<xs:element name="dependencies" type="Dependencies" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>

<xs:complexType name="Dependencies">
<xs:sequence>
<xs:element name="dependency" type="Dependency" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>

<xs:complexType name="Dependency">
<xs:sequence>
<xs:element name="groupId" type="xs:string" />
Expand Down Expand Up @@ -121,4 +127,4 @@
</xs:sequence>
</xs:complexType>

</xs:schema>
</xs:schema>

0 comments on commit 389a4a3

Please sign in to comment.