forked from devonfw/cobigen
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
da093d4
commit 58622fa
Showing
1 changed file
with
17 additions
and
18 deletions.
There are no files selected for viewing
35 changes: 17 additions & 18 deletions
35
cobigen/cobigen-core/src/main/resources/schema/v6.0/templateSetConfiguration.xsd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
xmlns:tns="http://capgemini.com/devonfw/cobigen/TemplateSetConfiguration" | ||
targetNamespace="http://capgemini.com/devonfw/cobigen/TemplateSetConfiguration" | ||
xmlns:cc="http://capgemini.com/devonfw/cobigen/ContextConfiguration" | ||
xmlns:tc="http://capgemini.com/devonfw/cobigen/TemplatesConfiguration" elementFormDefault="qualified" version="6.0"> | ||
targetNamespace="http://capgemini.com/devonfw/cobigen/TemplateSetConfiguration" | ||
xmlns:cc="http://capgemini.com/devonfw/cobigen/ContextConfiguration" | ||
xmlns:tc="http://capgemini.com/devonfw/cobigen/TemplatesConfiguration" elementFormDefault="qualified" | ||
version="6.0"> | ||
|
||
<xs:import schemaLocation="contextConfiguration.xsd" | ||
namespace="http://capgemini.com/devonfw/cobigen/ContextConfiguration"/> | ||
<xs:import schemaLocation="templatesConfiguration.xsd" | ||
namespace="http://capgemini.com/devonfw/cobigen/TemplatesConfiguration"/> | ||
|
||
<xs:import schemaLocation="contextConfiguration.xsd" | ||
namespace="http://capgemini.com/devonfw/cobigen/ContextConfiguration"/> | ||
<xs:import schemaLocation="templatesConfiguration.xsd" | ||
namespace="http://capgemini.com/devonfw/cobigen/TemplatesConfiguration"/> | ||
|
||
<xs:element name="templateSetConfiguration"> | ||
<xs:complexType> | ||
<xs:all> | ||
<xs:element ref="cc:contextConfiguration"/> | ||
<xs:element ref="tc:templatesConfiguration"/> | ||
</xs:all> | ||
<xs:attribute name="version" use="required" type="xs:decimal"/> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:element name="templateSetConfiguration"> | ||
<xs:complexType> | ||
<xs:all> | ||
<xs:element ref="cc:contextConfiguration"/> | ||
<xs:element ref="tc:templatesConfiguration"/> | ||
</xs:all> | ||
<xs:attribute name="version" use="required" type="xs:decimal"/> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:schema> |