Fixes for DB schema generation

pull/1/head
Jens Pelzetter 2020-02-15 19:42:50 +01:00
parent 5c3990fbda
commit 4819e25c67
15 changed files with 1963 additions and 6987 deletions

View File

@ -178,6 +178,7 @@
<param>org.librecms</param>
<param>org.scientificcms</param>
</packages>
<persistenceXml>${basedir}/src/main/resources/META-INF/persistence-ddl.xml</persistenceXml>
<useEnvers>true</useEnvers>
</configuration>
<executions>

View File

@ -0,0 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
author: Jens Pelzetter
-->
<persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence
http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"
version="2.1">
<persistence-unit name="ScientificCMS" transaction-type="JTA">
<!--
Enforce JPA provider
Not really necessary here because we don't use any Hibernate
specific features, but makes it easier to manage to database
creation scripts.
-->
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
<jta-data-source>java:/comp/env/jdbc/scientificcms/db</jta-data-source>
<properties>
<!-- Properties for Hibernate -->
<property name="hibernate.hbm2ddl.auto" value="validate"/>
<property name="hibernate.connection.autocommit" value="false" />
<property name="hibernate.id.new_generator_mappings" value="true"/>
<!--
Properties for Hibernate Envers
We are using the ValidityAuditStrategy here because it is faster
when querying data than the DefaultStrategy
-->
<property name="org.hibernate.envers.audit_strategy"
value="org.hibernate.envers.strategy.ValidityAuditStrategy"/>
</properties>
</persistence-unit>
</persistence>

View File

@ -65,6 +65,7 @@
AUTHORSHIP_ID bigint not null,
REV integer not null,
REVTYPE tinyint,
REVEND integer,
AUTHOR_ORDER bigint,
EDITOR boolean,
UUID varchar(36),
@ -252,6 +253,7 @@
LOCALIZED_VALUE varchar(2147483647) not null,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
@ -270,6 +272,7 @@
JOURNAL_ID bigint not null,
REV integer not null,
REVTYPE tinyint,
REVEND integer,
FIRST_YEAR integer,
ISSN varchar(9),
LAST_YEAR integer,
@ -339,6 +342,7 @@
LOCALIZED_VALUE varchar(2147483647) not null,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, PUBLICATION_ID, LOCALIZED_VALUE, LOCALE)
);
@ -355,6 +359,7 @@
LOCALIZED_VALUE varchar(2147483647) not null,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
@ -384,6 +389,7 @@
LOCALIZED_VALUE varchar(2147483647) not null,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, PUBLICATION_ID, LOCALIZED_VALUE, LOCALE)
);
@ -400,6 +406,7 @@
LOCALIZED_VALUE varchar(2147483647) not null,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, PUBLICATION_ID, LOCALIZED_VALUE, LOCALE)
);
@ -416,6 +423,7 @@
LOCALIZED_VALUE varchar(2147483647) not null,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, PUBLICATION_ID, LOCALIZED_VALUE, LOCALE)
);
@ -444,6 +452,7 @@
PUBLICATION_ID bigint not null,
REV integer not null,
REVTYPE tinyint,
REVEND integer,
LANGUAGE_OF_PUBLICATION varchar(255),
PEER_REVIEWED boolean,
UUID varchar(255),
@ -500,6 +509,7 @@
PUBLISHER_ID bigint not null,
REV integer not null,
REVTYPE tinyint,
REVEND integer,
NAME varchar(2048),
PLACE varchar(2048),
UUID varchar(255),
@ -529,6 +539,7 @@
SERIES_ID bigint not null,
REV integer not null,
REVTYPE tinyint,
REVEND integer,
UUID varchar(255),
primary key (SERIES_ID, REV)
);
@ -546,6 +557,7 @@
LOCALIZED_VALUE varchar(2147483647) not null,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, SERIES_ID, LOCALIZED_VALUE, LOCALE)
);
@ -562,6 +574,7 @@
LOCALIZED_VALUE varchar(2147483647) not null,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, SERIES_ID, LOCALIZED_VALUE, LOCALE)
);
@ -594,8 +607,9 @@
);
create table SCI_PUBLICATIONS.UNPUBLISHED (
PLACE varchar(512),
NUMBER varchar(512),
NUMBER_OF_PAGES integer,
PLACE varchar(2048),
PUBLICATION_ID bigint not null,
ORGANIZATION bigint,
primary key (PUBLICATION_ID)
@ -604,8 +618,9 @@
create table SCI_PUBLICATIONS.UNPUBLISHED_AUD (
PUBLICATION_ID bigint not null,
REV integer not null,
PLACE varchar(512),
NUMBER varchar(512),
NUMBER_OF_PAGES integer,
PLACE varchar(2048),
ORGANIZATION bigint,
primary key (PUBLICATION_ID, REV)
);
@ -623,6 +638,7 @@
VOLUME_ID bigint not null,
REV integer not null,
REVTYPE tinyint,
REVEND integer,
UUID varchar(255),
VOLUME_OF_SERIES varchar(255),
PUBLICATION_ID bigint,
@ -719,6 +735,11 @@
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.AUTHORSHIPS_AUD
add constraint FKqq6fc6fcnkp7o4agr2vv5nnps
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.COLLECTED_VOLUME_ITEMS
add constraint FK4mmyng3ibw4blg81mcs7ry09w
foreign key (OBJECT_ID)
@ -874,11 +895,21 @@
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.JOURNAL_DESCRIPTIONS_AUD
add constraint FKccbk7q4sbcq104fxqcvich954
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.JOURNALS_AUD
add constraint FK5g815tq8ig2sop0nyk8vofs18
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.JOURNALS_AUD
add constraint FKa7puo9bbw3f4pctprvypljecc
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.MONOGRAPH_ITEMS
add constraint FK4wu49k70u575irwdiuje34hfh
foreign key (OBJECT_ID)
@ -934,6 +965,11 @@
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.PUBLICATION_ABSTRACTS_AUD
add constraint FKeo26ebg4wfl0sq7k08o2q2o2f
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.PUBLICATION_EDITION
add constraint FKyujvtaokus0ieluckm4lb1dk
foreign key (OBJECT_ID)
@ -944,6 +980,11 @@
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.PUBLICATION_EDITION_AUD
add constraint FKdfxq4v3ka4bh3sxnjoqkqusn6
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.PUBLICATION_ITEMS
add constraint FKn03eberv5b0dgb6w8ry7ae33e
foreign key (publication_PUBLICATION_ID)
@ -969,6 +1010,11 @@
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.PUBLICATION_MISC_AUD
add constraint FKqb63pbmi17v1551yi3xnkoefd
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.PUBLICATION_SHORT_DESCS
add constraint FKegp4u1x10npg4p2uqjydjh47g
foreign key (PUBLICATION_ID)
@ -979,6 +1025,11 @@
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.PUBLICATION_SHORT_DESCS_AUD
add constraint FK72onubbohgmws7l4gqhcr11lb
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.PUBLICATION_TITLES
add constraint FKnc32fyqp0ucp8lqxiamo4l8p0
foreign key (PUBLICATION_ID)
@ -989,6 +1040,11 @@
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.PUBLICATION_TITLES_AUD
add constraint FKe7qfuoyc362ifqnrc6bhr0166
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.PUBLICATION_WITH_PUBLISHER_ITEMS
add constraint FKmfvhj91ra4ymh2651ysf71bip
foreign key (OBJECT_ID)
@ -1004,6 +1060,11 @@
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.PUBLICATIONS_AUD
add constraint FKcsjfgelx6ebeujnjm0cgia4k4
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.PUBLICATIONS_WITH_PUBLISHER
add constraint FK6rdc01ay2i7mtii8rjmku718u
foreign key (publisher_PUBLISHER_ID)
@ -1039,6 +1100,11 @@
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.PUBLISHERS_AUD
add constraint FK61plm3d7wn4d2ah1239tiwyd7
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.SERIES_ASSETS
add constraint FKjuqe52dx4slgclfm1w6hu8oj9
foreign key (SERIES_ID)
@ -1059,6 +1125,11 @@
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.SERIES_AUD
add constraint FKrx0ib3rsiesvd3hora2diss0r
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.SERIES_DESCRIPTIONS
add constraint FK74qiddpvtb8228veck5lmwja1
foreign key (SERIES_ID)
@ -1069,6 +1140,11 @@
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.SERIES_DESCRIPTIONS_AUD
add constraint FKo5wab874g98474to069xugeao
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.SERIES_TITLES
add constraint FKtaur5ng47rhlec15x77x5ibod
foreign key (SERIES_ID)
@ -1079,6 +1155,11 @@
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.SERIES_TITLES_AUD
add constraint FKn002a9yj2x74cmgthrj67m657
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.TALK_ITEMS
add constraint FK195mq1bo20ij0qgaimd7vtrj6
foreign key (OBJECT_ID)
@ -1129,6 +1210,11 @@
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.VOLUMES_IN_SERIES_AUD
add constraint FKmyqwkahgvalnqpwv839o7iv6o
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_PUBLICATIONS.WORKING_PAPER_ITEMS
add constraint FKtks13pm4b5p0f17k23jgmh3ck
foreign key (OBJECT_ID)

View File

@ -178,6 +178,7 @@
<param>org.scientificcms</param>
</packages>
<useEnvers>true</useEnvers>
<persistenceXml>${basedir}/src/main/resources/META-INF/persistence-ddl.xml</persistenceXml>
</configuration>
<executions>
<execution>

View File

@ -11,7 +11,7 @@ package org.scientificcms.contenttypes.sciproject;
*/
public final class SciProjectConstants {
public static final String DB_SCHEMA = "SCI_PROJECT";
public static final String DB_SCHEMA = "SCI_TYPES_PROJECT";
public static final String SCI_PROJECT_BUNDLE
= "org.scientificcms.contenttypes.SciProjectResources";

View File

@ -13,7 +13,6 @@ import org.libreccm.modules.UnInstallEvent;
import org.librecms.contenttypes.ContentTypes;
@Module(
packageName = "org.scientificcms.contenttypes",
requiredModules = {
@RequiredModule(module = org.libreccm.core.CcmCore.class),
@RequiredModule(module = org.librecms.Cms.class)

View File

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
author: Jens Pelzetter
-->
<persistence xmlns="http://xmlns.jcp.org/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence
http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"
version="2.1">
<persistence-unit name="ScientificCMS" transaction-type="JTA">
<!--
Enforce JPA provider
Not really necessary here because we don't use any Hibernate
specific features, but makes it easier to manage to database
creation scripts.
-->
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
<jta-data-source>java:/comp/env/jdbc/scientificcms/db</jta-data-source>
<properties>
<!-- Properties for Hibernate -->
<property name="hibernate.hbm2ddl.auto" value="validate"/>
<property name="hibernate.connection.autocommit" value="false" />
<property name="hibernate.id.new_generator_mappings" value="true"/>
<!--
Properties for Hibernate Envers
We are using the ValidityAuditStrategy here because it is faster
when querying data than the DefaultStrategy
-->
<property name="org.hibernate.envers.audit_strategy"
value="org.hibernate.envers.strategy.ValidityAuditStrategy"/>
</properties>
</persistence-unit>
</persistence>

View File

@ -0,0 +1,275 @@
create table SCI_TYPES_PROJECT.PROJECT_CONTACTS (
CONTACT_ID bigint not null,
CONTACT_TYPE varchar(255),
CONTACT_ORDER bigint,
CONTACTABLE_ID bigint,
PROJECT_ID bigint,
primary key (CONTACT_ID)
);
create table SCI_TYPES_PROJECT.PROJECT_CONTACTS_AUD (
CONTACT_ID bigint not null,
REV integer not null,
REVTYPE tinyint,
REVEND integer,
CONTACT_TYPE varchar(255),
CONTACT_ORDER bigint,
CONTACTABLE_ID bigint,
PROJECT_ID bigint,
primary key (CONTACT_ID, REV)
);
create table SCI_TYPES_PROJECT.PROJECT_DESCS (
OBJECT_ID bigint not null,
LOCALIZED_VALUE varchar(2147483647),
LOCALE varchar(255) not null,
primary key (OBJECT_ID, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_DESCS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE varchar(2147483647) not null,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_FUNDING (
OBJECT_ID bigint not null,
LOCALIZED_VALUE varchar(2147483647),
LOCALE varchar(255) not null,
primary key (OBJECT_ID, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_FUNDING_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE varchar(2147483647) not null,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_FUNDING_VOLUME (
OBJECT_ID bigint not null,
LOCALIZED_VALUE varchar(2147483647),
LOCALE varchar(255) not null,
primary key (OBJECT_ID, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_FUNDING_VOLUME_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE varchar(2147483647) not null,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_MEMBERSHIPS (
MEMBERSHIP_ID bigint not null,
MEMBER_ROLE varchar(255),
STATUS varchar(255),
MEMBER_ID bigint,
PROJECT_ID bigint,
primary key (MEMBERSHIP_ID)
);
create table SCI_TYPES_PROJECT.PROJECT_MEMBERSHIPS_AUD (
MEMBERSHIP_ID bigint not null,
REV integer not null,
REVTYPE tinyint,
REVEND integer,
MEMBER_ROLE varchar(255),
STATUS varchar(255),
MEMBER_ID bigint,
PROJECT_ID bigint,
primary key (MEMBERSHIP_ID, REV)
);
create table SCI_TYPES_PROJECT.PROJECT_SHORT_DESCS (
OBJECT_ID bigint not null,
LOCALIZED_VALUE varchar(2147483647),
LOCALE varchar(255) not null,
primary key (OBJECT_ID, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_SHORT_DESCS_AUD (
REV integer not null,
OBJECT_ID bigint not null,
LOCALIZED_VALUE varchar(2147483647) not null,
LOCALE varchar(255) not null,
REVTYPE tinyint,
REVEND integer,
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECTS (
PROJECT_BEGIN date,
PROJECT_END date,
OBJECT_ID bigint not null,
primary key (OBJECT_ID)
);
create table SCI_TYPES_PROJECT.PROJECTS_AUD (
OBJECT_ID bigint not null,
REV integer not null,
PROJECT_BEGIN date,
PROJECT_END date,
primary key (OBJECT_ID, REV)
);
create table SCI_TYPES_PROJECT.SPONSORING (
SPONSORING_ID bigint not null,
FUNDING_CODE varchar(512),
SPONSOR_ORDER bigint,
PROJECT_ID bigint,
SPONSOR_ID bigint,
primary key (SPONSORING_ID)
);
create table SCI_TYPES_PROJECT.SPONSORING_AUD (
SPONSORING_ID bigint not null,
REV integer not null,
REVTYPE tinyint,
REVEND integer,
FUNDING_CODE varchar(512),
SPONSOR_ORDER bigint,
PROJECT_ID bigint,
SPONSOR_ID bigint,
primary key (SPONSORING_ID, REV)
);
alter table SCI_TYPES_PROJECT.PROJECT_CONTACTS
add constraint FKgnma88ye77fb0vdmpuepyb2y7
foreign key (CONTACTABLE_ID)
references CCM_CMS.CONTACTABLE_ENTITIES;
alter table SCI_TYPES_PROJECT.PROJECT_CONTACTS
add constraint FK21fku49mpakv86hra725t3sok
foreign key (PROJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.PROJECT_CONTACTS_AUD
add constraint FK15m4nnwrt964isduiuk8bbeg8
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_CONTACTS_AUD
add constraint FKciyhqi7w2dby8e3b4arklmfqp
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_DESCS
add constraint FKfh5goal8j4gsjhf65gxm11gxu
foreign key (OBJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.PROJECT_DESCS_AUD
add constraint FKfq5fyp71qmrc9y0h6px8vae7l
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_DESCS_AUD
add constraint FK6615a6cc9tcmovk51a9vqff7x
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_FUNDING
add constraint FKqmq8depjmuly0lixjljwnwut5
foreign key (OBJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.PROJECT_FUNDING_AUD
add constraint FK664s3oomoj23e9hvbh97hg5dw
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_FUNDING_AUD
add constraint FKgtsw7ruamw5m1p15p5y261a23
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_FUNDING_VOLUME
add constraint FKf6lg5n24snpplnvctdknh4mrv
foreign key (OBJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.PROJECT_FUNDING_VOLUME_AUD
add constraint FKgnnop98oxffgs7bp9bspajhw9
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_FUNDING_VOLUME_AUD
add constraint FKk599wppcylm8yo704ht3w7ibj
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_MEMBERSHIPS
add constraint FKdbcet4i6wg7jinmaa0wchqujp
foreign key (MEMBER_ID)
references CCM_CMS.PERSONS;
alter table SCI_TYPES_PROJECT.PROJECT_MEMBERSHIPS
add constraint FK54cqbnqwnv7e13p7k842nmjvt
foreign key (PROJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.PROJECT_MEMBERSHIPS_AUD
add constraint FKjdf8o2a5cuusgee0v43n562y4
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_MEMBERSHIPS_AUD
add constraint FK7yfj65ojma1coq2eeywpu0fcp
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_SHORT_DESCS
add constraint FKqbbb85ebs497yad3gx07kdt1e
foreign key (OBJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.PROJECT_SHORT_DESCS_AUD
add constraint FK4ijysk1fk31o5kljgpc2p7yq6
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_SHORT_DESCS_AUD
add constraint FKkmidmqbpihxhfu1349lcw0rb0
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECTS
add constraint FKqlmls86i354oxprglxg5j9xxy
foreign key (OBJECT_ID)
references CCM_CMS.CONTENT_ITEMS;
alter table SCI_TYPES_PROJECT.PROJECTS_AUD
add constraint FKss0w64wsb71r39npak6tg963b
foreign key (OBJECT_ID, REV)
references CCM_CMS.CONTENT_ITEMS_AUD;
alter table SCI_TYPES_PROJECT.SPONSORING
add constraint FKe8posjrbtsvd7t8q3k8l7ybmy
foreign key (PROJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.SPONSORING
add constraint FKt63gl8j92rua5risu9cnhd3py
foreign key (SPONSOR_ID)
references CCM_CMS.ORGANIZATIONS;
alter table SCI_TYPES_PROJECT.SPONSORING_AUD
add constraint FK7ci9e1fuqi8vbjcp9x70747se
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.SPONSORING_AUD
add constraint FKfa0ems4hsww6wgoapss1bx38f
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;

View File

@ -0,0 +1,275 @@
create table SCI_TYPES_PROJECT.PROJECT_CONTACTS (
CONTACT_ID int8 not null,
CONTACT_TYPE varchar(255),
CONTACT_ORDER int8,
CONTACTABLE_ID int8,
PROJECT_ID int8,
primary key (CONTACT_ID)
);
create table SCI_TYPES_PROJECT.PROJECT_CONTACTS_AUD (
CONTACT_ID int8 not null,
REV int4 not null,
REVTYPE int2,
REVEND int4,
CONTACT_TYPE varchar(255),
CONTACT_ORDER int8,
CONTACTABLE_ID int8,
PROJECT_ID int8,
primary key (CONTACT_ID, REV)
);
create table SCI_TYPES_PROJECT.PROJECT_DESCS (
OBJECT_ID int8 not null,
LOCALIZED_VALUE text,
LOCALE varchar(255) not null,
primary key (OBJECT_ID, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_DESCS_AUD (
REV int4 not null,
OBJECT_ID int8 not null,
LOCALIZED_VALUE text not null,
LOCALE varchar(255) not null,
REVTYPE int2,
REVEND int4,
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_FUNDING (
OBJECT_ID int8 not null,
LOCALIZED_VALUE text,
LOCALE varchar(255) not null,
primary key (OBJECT_ID, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_FUNDING_AUD (
REV int4 not null,
OBJECT_ID int8 not null,
LOCALIZED_VALUE text not null,
LOCALE varchar(255) not null,
REVTYPE int2,
REVEND int4,
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_FUNDING_VOLUME (
OBJECT_ID int8 not null,
LOCALIZED_VALUE text,
LOCALE varchar(255) not null,
primary key (OBJECT_ID, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_FUNDING_VOLUME_AUD (
REV int4 not null,
OBJECT_ID int8 not null,
LOCALIZED_VALUE text not null,
LOCALE varchar(255) not null,
REVTYPE int2,
REVEND int4,
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_MEMBERSHIPS (
MEMBERSHIP_ID int8 not null,
MEMBER_ROLE varchar(255),
STATUS varchar(255),
MEMBER_ID int8,
PROJECT_ID int8,
primary key (MEMBERSHIP_ID)
);
create table SCI_TYPES_PROJECT.PROJECT_MEMBERSHIPS_AUD (
MEMBERSHIP_ID int8 not null,
REV int4 not null,
REVTYPE int2,
REVEND int4,
MEMBER_ROLE varchar(255),
STATUS varchar(255),
MEMBER_ID int8,
PROJECT_ID int8,
primary key (MEMBERSHIP_ID, REV)
);
create table SCI_TYPES_PROJECT.PROJECT_SHORT_DESCS (
OBJECT_ID int8 not null,
LOCALIZED_VALUE text,
LOCALE varchar(255) not null,
primary key (OBJECT_ID, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECT_SHORT_DESCS_AUD (
REV int4 not null,
OBJECT_ID int8 not null,
LOCALIZED_VALUE text not null,
LOCALE varchar(255) not null,
REVTYPE int2,
REVEND int4,
primary key (REV, OBJECT_ID, LOCALIZED_VALUE, LOCALE)
);
create table SCI_TYPES_PROJECT.PROJECTS (
PROJECT_BEGIN date,
PROJECT_END date,
OBJECT_ID int8 not null,
primary key (OBJECT_ID)
);
create table SCI_TYPES_PROJECT.PROJECTS_AUD (
OBJECT_ID int8 not null,
REV int4 not null,
PROJECT_BEGIN date,
PROJECT_END date,
primary key (OBJECT_ID, REV)
);
create table SCI_TYPES_PROJECT.SPONSORING (
SPONSORING_ID int8 not null,
FUNDING_CODE varchar(512),
SPONSOR_ORDER int8,
PROJECT_ID int8,
SPONSOR_ID int8,
primary key (SPONSORING_ID)
);
create table SCI_TYPES_PROJECT.SPONSORING_AUD (
SPONSORING_ID int8 not null,
REV int4 not null,
REVTYPE int2,
REVEND int4,
FUNDING_CODE varchar(512),
SPONSOR_ORDER int8,
PROJECT_ID int8,
SPONSOR_ID int8,
primary key (SPONSORING_ID, REV)
);
alter table SCI_TYPES_PROJECT.PROJECT_CONTACTS
add constraint FKgnma88ye77fb0vdmpuepyb2y7
foreign key (CONTACTABLE_ID)
references CCM_CMS.CONTACTABLE_ENTITIES;
alter table SCI_TYPES_PROJECT.PROJECT_CONTACTS
add constraint FK21fku49mpakv86hra725t3sok
foreign key (PROJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.PROJECT_CONTACTS_AUD
add constraint FK15m4nnwrt964isduiuk8bbeg8
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_CONTACTS_AUD
add constraint FKciyhqi7w2dby8e3b4arklmfqp
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_DESCS
add constraint FKfh5goal8j4gsjhf65gxm11gxu
foreign key (OBJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.PROJECT_DESCS_AUD
add constraint FKfq5fyp71qmrc9y0h6px8vae7l
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_DESCS_AUD
add constraint FK6615a6cc9tcmovk51a9vqff7x
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_FUNDING
add constraint FKqmq8depjmuly0lixjljwnwut5
foreign key (OBJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.PROJECT_FUNDING_AUD
add constraint FK664s3oomoj23e9hvbh97hg5dw
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_FUNDING_AUD
add constraint FKgtsw7ruamw5m1p15p5y261a23
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_FUNDING_VOLUME
add constraint FKf6lg5n24snpplnvctdknh4mrv
foreign key (OBJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.PROJECT_FUNDING_VOLUME_AUD
add constraint FKgnnop98oxffgs7bp9bspajhw9
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_FUNDING_VOLUME_AUD
add constraint FKk599wppcylm8yo704ht3w7ibj
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_MEMBERSHIPS
add constraint FKdbcet4i6wg7jinmaa0wchqujp
foreign key (MEMBER_ID)
references CCM_CMS.PERSONS;
alter table SCI_TYPES_PROJECT.PROJECT_MEMBERSHIPS
add constraint FK54cqbnqwnv7e13p7k842nmjvt
foreign key (PROJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.PROJECT_MEMBERSHIPS_AUD
add constraint FKjdf8o2a5cuusgee0v43n562y4
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_MEMBERSHIPS_AUD
add constraint FK7yfj65ojma1coq2eeywpu0fcp
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_SHORT_DESCS
add constraint FKqbbb85ebs497yad3gx07kdt1e
foreign key (OBJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.PROJECT_SHORT_DESCS_AUD
add constraint FK4ijysk1fk31o5kljgpc2p7yq6
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECT_SHORT_DESCS_AUD
add constraint FKkmidmqbpihxhfu1349lcw0rb0
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.PROJECTS
add constraint FKqlmls86i354oxprglxg5j9xxy
foreign key (OBJECT_ID)
references CCM_CMS.CONTENT_ITEMS;
alter table SCI_TYPES_PROJECT.PROJECTS_AUD
add constraint FKss0w64wsb71r39npak6tg963b
foreign key (OBJECT_ID, REV)
references CCM_CMS.CONTENT_ITEMS_AUD;
alter table SCI_TYPES_PROJECT.SPONSORING
add constraint FKe8posjrbtsvd7t8q3k8l7ybmy
foreign key (PROJECT_ID)
references SCI_TYPES_PROJECT.PROJECTS;
alter table SCI_TYPES_PROJECT.SPONSORING
add constraint FKt63gl8j92rua5risu9cnhd3py
foreign key (SPONSOR_ID)
references CCM_CMS.ORGANIZATIONS;
alter table SCI_TYPES_PROJECT.SPONSORING_AUD
add constraint FK7ci9e1fuqi8vbjcp9x70747se
foreign key (REV)
references CCM_CORE.CCM_REVISIONS;
alter table SCI_TYPES_PROJECT.SPONSORING_AUD
add constraint FKfa0ems4hsww6wgoapss1bx38f
foreign key (REVEND)
references CCM_CORE.CCM_REVISIONS;

View File

@ -1,49 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="target/generated-sources/annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="ignore_optional_problems" value="true"/>
<attribute name="m2e-apt" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>

View File

@ -1,80 +0,0 @@
<factorypath>
<factorypathentry kind="VARJAR" id="M2_REPO/org/webjars/font-awesome/4.7.0/font-awesome-4.7.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/webjars/requirejs/2.3.5/requirejs-2.3.5.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/webjars/requirejs-domready/2.0.1-2/requirejs-domready-2.0.1-2.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/webjars/npm/tinymce/4.8.2/tinymce-4.8.2.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/librecms/ccm-cms-pagemodelseditor/7.0.0-SNAPSHOT/ccm-cms-pagemodelseditor-7.0.0-SNAPSHOT.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/librecms/ccm-cms-tinymce/7.0.0-SNAPSHOT/ccm-cms-tinymce-7.0.0-SNAPSHOT.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/libreccm/ccm-core/7.0.0-SNAPSHOT/ccm-core-7.0.0-SNAPSHOT.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/javax/el/javax.el-api/3.0.1-b06/javax.el-api-3.0.1-b06.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/glassfish/javax.el/3.0.1-b11/javax.el-3.0.1-b11.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/flywaydb/flyway-core/5.2.4/flyway-core-5.2.4.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/commons-beanutils/commons-beanutils/1.9.3/commons-beanutils-1.9.3.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/commons-logging/commons-logging/1.2/commons-logging-1.2.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/commons-collections/commons-collections/3.2.2/commons-collections-3.2.2.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/commons-codec/commons-codec/1.12/commons-codec-1.12.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/commons-fileupload/commons-fileupload/1.4/commons-fileupload-1.4.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/commons-io/commons-io/2.6/commons-io-2.6.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/commons-lang/commons-lang/2.6/commons-lang-2.6.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/oro/oro/2.0.8/oro-2.0.8.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/bouncycastle/bcprov-jdk16/1.46/bcprov-jdk16-1.46.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/net/sf/jtidy/jtidy/r938/jtidy-r938.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/maven/maven-artifact/3.6.1/maven-artifact-3.6.1.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/codehaus/plexus/plexus-utils/3.2.0/plexus-utils-3.2.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/commons/commons-lang3/3.8.1/commons-lang3-3.8.1.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/shiro/shiro-core/1.4.0/shiro-core-1.4.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/shiro/shiro-lang/1.4.0/shiro-lang-1.4.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/slf4j/slf4j-api/1.7.21/slf4j-api-1.7.21.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/shiro/shiro-cache/1.4.0/shiro-cache-1.4.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/shiro/shiro-crypto-hash/1.4.0/shiro-crypto-hash-1.4.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/shiro/shiro-crypto-core/1.4.0/shiro-crypto-core-1.4.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/shiro/shiro-crypto-cipher/1.4.0/shiro-crypto-cipher-1.4.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/shiro/shiro-config-core/1.4.0/shiro-config-core-1.4.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/shiro/shiro-config-ogdl/1.4.0/shiro-config-ogdl-1.4.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/shiro/shiro-event/1.4.0/shiro-event-1.4.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/shiro/shiro-web/1.4.0/shiro-web-1.4.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/io/jsonwebtoken/jjwt-api/0.10.6/jjwt-api-0.10.6.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/io/jsonwebtoken/jjwt-impl/0.10.6/jjwt-impl-0.10.6.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/io/jsonwebtoken/jjwt-jackson/0.10.6/jjwt-jackson-0.10.6.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/reflections/reflections/0.9.11/reflections-0.9.11.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/google/guava/guava/20.0/guava-20.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/javassist/javassist/3.21.0-GA/javassist-3.21.0-GA.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/freemarker/freemarker/2.3.28/freemarker-2.3.28.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-core/2.9.8/jackson-core-2.9.8.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/core/jackson-databind/2.9.8/jackson-databind-2.9.8.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.8/jackson-datatype-jdk8-2.9.8.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.9.8/jackson-dataformat-xml-2.9.8.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.9.8/jackson-module-jaxb-annotations-2.9.8.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/codehaus/woodstox/stax2-api/3.1.4/stax2-api-3.1.4.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/woodstox/woodstox-core/5.0.3/woodstox-core-5.0.3.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/codehaus/woodstox/woodstox-core-asl/4.4.1/woodstox-core-asl-4.4.1.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/javax/xml/stream/stax-api/1.0-2/stax-api-1.0-2.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.9.8/jackson-dataformat-csv-2.9.8.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/libreccm/ccm-editor/7.0.0-SNAPSHOT/ccm-editor-7.0.0-SNAPSHOT.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/libreccm/ccm-pagemodelseditor/7.0.0-SNAPSHOT/ccm-pagemodelseditor-7.0.0-SNAPSHOT.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/libreccm/ccm-theme-foundry/7.0.0-SNAPSHOT/ccm-theme-foundry-7.0.0-SNAPSHOT.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/librecms/ccm-theme-ftllibs-devel/7.0.0-SNAPSHOT/ccm-theme-ftllibs-devel-7.0.0-SNAPSHOT.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/net/sf/saxon/Saxon-HE/9.9.1-2/Saxon-HE-9.9.1-2.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/ibm/icu/icu4j/63.1/icu4j-63.1.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/libreccm/ccm-shortcuts/7.0.0-SNAPSHOT/ccm-shortcuts-7.0.0-SNAPSHOT.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/librecms/ccm-cms/7.0.0-SNAPSHOT/ccm-cms-7.0.0-SNAPSHOT.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/jaxrs/jackson-jaxrs-json-provider/2.9.8/jackson-jaxrs-json-provider-2.9.8.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/jaxrs/jackson-jaxrs-base/2.9.8/jackson-jaxrs-base-2.9.8.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/jackson/jaxrs/jackson-jaxrs-xml-provider/2.9.8/jackson-jaxrs-xml-provider-2.9.8.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/hibernate/hibernate-core/5.3.9.Final/hibernate-core-5.3.9.Final.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/javax/persistence/javax.persistence-api/2.2/javax.persistence-api-2.2.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/net/bytebuddy/byte-buddy/1.9.5/byte-buddy-1.9.5.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/antlr/antlr/2.7.7/antlr-2.7.7.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/jboss/spec/javax/transaction/jboss-transaction-api_1.2_spec/1.1.1.Final/jboss-transaction-api_1.2_spec-1.1.1.Final.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/jboss/jandex/2.0.5.Final/jandex-2.0.5.Final.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/com/fasterxml/classmate/1.3.4/classmate-1.3.4.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/javax/activation/javax.activation-api/1.2.0/javax.activation-api-1.2.0.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/dom4j/dom4j/2.1.1/dom4j-2.1.1.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/hibernate/common/hibernate-commons-annotations/5.0.4.Final/hibernate-commons-annotations-5.0.4.Final.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/hibernate/validator/hibernate-validator/6.0.15.Final/hibernate-validator-6.0.15.Final.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-core/2.11.2/log4j-core-2.11.2.jar" enabled="true" runInBatchMode="false"/>
<factorypathentry kind="VARJAR" id="M2_REPO/org/apache/logging/log4j/log4j-api/2.11.2/log4j-api-2.11.2.jar" enabled="true" runInBatchMode="false"/>
</factorypath>

View File

@ -35,7 +35,7 @@
"@libreccm/ccm-pagemodelseditor": {
"version": "7.0.0",
"resolved": "https://packages.libreccm.org/repository/libreccm-npm/@libreccm/ccm-pagemodelseditor/-/ccm-pagemodelseditor-7.0.0.tgz",
"integrity": "sha512-gIUmUntJ0wLWd2mXFy0PJNjLwrcF8t5Epyf/PPsc3a5bUYXR4SlRJiILPeZjrr6bn7S3CiWaHm2tPdynj5bf2w==",
"integrity": "sha512-fRCvn6xbCoXnGi98S1iMLVKd5XODTdwKyj+PNDK9RG7rggdvFYf2PMa3JPyFW0pt7CnnuPG8kodyRgOJPriiRQ==",
"requires": {
"react": "16.12.0",
"react-dom": "16.12.0",
@ -47,7 +47,7 @@
"@librecms/ccm-cms-pagemodelseditor": {
"version": "7.0.0",
"resolved": "https://packages.libreccm.org/repository/libreccm-npm/@librecms/ccm-cms-pagemodelseditor/-/ccm-cms-pagemodelseditor-7.0.0.tgz",
"integrity": "sha512-lzeK7SEBjautgHcDNcid1Y3+jx/fIh3KL2N8M/3lKsOQdchQuNA+iv3VRLiHnzpZluLFSjaDVoub51NXL4xz/Q==",
"integrity": "sha512-e4XZ7SXNSN6iMBf9mrS2OktkUMDTc6FE6DG7hdyJJauMHabAq0GufBw99bhyuIJwRWJmR2iB2qUs9r0YwjBBEw==",
"requires": {
"@libreccm/ccm-pagemodelseditor": "7.0.0",
"react": "16.12.0",