[jOOQ/jOOQ#12633] Move XSDs from jOOQ and jOOQ-meta to subpackages to

avoid split xsd packages
This commit is contained in:
Lukas Eder 2021-11-17 15:40:41 +01:00
parent 9593f375de
commit af2aeca3aa

View File

@ -84,7 +84,7 @@ public final class Constants {
/**
* The current jooq-runtime XSD classpath location.
*/
public static final String CP_RUNTIME = "/xsd/" + XSD_RUNTIME;
public static final String CP_RUNTIME = "/org/jooq/xsd/" + XSD_RUNTIME;
/**
* The current jooq-export XSD file name.
@ -99,7 +99,7 @@ public final class Constants {
/**
* The current jooq-export XSD classpath location.
*/
public static final String CP_EXPORT = "/xsd/" + XSD_EXPORT;
public static final String CP_EXPORT = "/org/jooq/xsd/" + XSD_EXPORT;
/**
* The current jooq-meta XSD file name.
@ -114,7 +114,7 @@ public final class Constants {
/**
* The current jooq-meta XSD classpath location.
*/
public static final String CP_META = "/xsd/" + XSD_META;
public static final String CP_META = "/org/jooq/xsd/" + XSD_META;
/**
* The current jooq-migrations XSD file name.
@ -129,7 +129,7 @@ public final class Constants {
/**
* The current jooq-migrations XSD classpath location.
*/
public static final String CP_MIGRATIONS = "/xsd/" + XSD_META;
public static final String CP_MIGRATIONS = "/org/jooq/xsd/" + XSD_META;
/**
* The current jooq-codegen XSD file name.
@ -144,7 +144,7 @@ public final class Constants {
/**
* The current jooq-codegen XSD classpath location.
*/
public static final String CP_CODEGEN = "/xsd/" + XSD_CODEGEN;
public static final String CP_CODEGEN = "/org/jooq/meta/xsd/" + XSD_CODEGEN;