[#4538] Add Constants.XSD_EXPORT and NS_EXPORT

This commit is contained in:
lukaseder 2015-09-13 19:23:04 +02:00
parent 0334a2083e
commit 6494a7b502
2 changed files with 13 additions and 3 deletions

View File

@ -78,6 +78,16 @@ public final class Constants {
*/
public static final String NS_RUNTIME = "http://www.jooq.org/xsd/" + XSD_RUNTIME;
/**
* The current jooq-export XSD file name.
*/
public static final String XSD_EXPORT = "jooq-export-3.7.0.xsd";
/**
* The current jooq-export XML namespace
*/
public static final String NS_EXPORT = "http://www.jooq.org/xsd/" + XSD_EXPORT;
/**
* The current jooq-meta XSD file name.
*/
@ -91,7 +101,7 @@ public final class Constants {
/**
* The current jooq-codegen XSD file name.
*/
public static final String XSD_CODEGEN = "jooq-codegen-3.6.0.xsd";
public static final String XSD_CODEGEN = "jooq-codegen-3.7.0.xsd";
/**
* The current jooq-codegen XML namespace.

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<schema
xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:jooq-export="http://www.jooq.org/xsd/jooq-export-1.6.2.xsd"
targetNamespace="http://www.jooq.org/xsd/jooq-export-1.6.2.xsd"
xmlns:jooq-export="http://www.jooq.org/xsd/jooq-export-2.6.0.xsd"
targetNamespace="http://www.jooq.org/xsd/jooq-export-2.6.0.xsd"
elementFormDefault="qualified">
<element name="result" type="jooq-export:Result"/>