diff --git a/datavirt/jdv-jdg-integration-ext/Dockerfile b/datavirt/jdv-jdg-integration-ext/Dockerfile
new file mode 100644
index 0000000..c0081d0
--- /dev/null
+++ b/datavirt/jdv-jdg-integration-ext/Dockerfile
@@ -0,0 +1,11 @@
+FROM scratch
+
+LABEL Name="jboss-jdv-6/jdv-jdg-test" \
+ Version="latest" \
+ Release="latest" \
+ Architecture="x86_64"
+
+COPY resourceadapters.env /extensions/resourceadapters.env
+COPY injected-modules /extensions/injected-modules
+COPY injected-files /extensions/injected-files
+COPY install.sh /extensions/install.sh
diff --git a/datavirt/jdv-jdg-integration-ext/datasources.env b/datavirt/jdv-jdg-integration-ext/datasources.env
new file mode 100644
index 0000000..f266fdd
--- /dev/null
+++ b/datavirt/jdv-jdg-integration-ext/datasources.env
@@ -0,0 +1,11 @@
+DATASOURCES=ACCOUNTS_H2
+
+ACCOUNTS_H2_DATABASE=accounts
+ACCOUNTS_H2_JNDI=java:/accounts-ds
+ACCOUNTS_H2_DRIVER=h2
+ACCOUNTS_H2_JTA=true
+ACCOUNTS_H2_NONXA=true
+ACCOUNTS_H2_USERNAME=sa
+ACCOUNTS_H2_PASSWORD=sa
+ACCOUNTS_H2_URL="jdbc:h2:mem:test;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE;INIT=RUNSCRIPT FROM '/home/jboss/source/extensions/extras/injected-files/customer-schema.sql'"
+
diff --git a/datavirt/jdv-jdg-integration-ext/injected-files/customer-schema-drop.sql b/datavirt/jdv-jdg-integration-ext/injected-files/customer-schema-drop.sql
new file mode 100644
index 0000000..b6ca9a7
--- /dev/null
+++ b/datavirt/jdv-jdg-integration-ext/injected-files/customer-schema-drop.sql
@@ -0,0 +1,27 @@
+
+DROP TABLE HOLDINGS
+;
+
+DROP TABLE PRODUCT
+;
+
+DROP TABLE ACCOUNT
+;
+
+DROP TABLE CUSTOMER
+;
+
+DROP TABLE h2_stock_mat
+;
+
+DROP TABLE STATUS
+;
+
+
+
+
+
+
+
+
+
diff --git a/datavirt/jdv-jdg-integration-ext/injected-files/customer-schema.sql b/datavirt/jdv-jdg-integration-ext/injected-files/customer-schema.sql
new file mode 100644
index 0000000..ccab557
--- /dev/null
+++ b/datavirt/jdv-jdg-integration-ext/injected-files/customer-schema.sql
@@ -0,0 +1,199 @@
+DROP TABLE IF EXISTS status;
+DROP TABLE IF EXISTS h2_stock_mat;
+DROP TABLE IF EXISTS mat_stock_staging;
+DROP TABLE IF EXISTS CUSTOMER;
+DROP TABLE IF EXISTS ACCOUNT;
+DROP TABLE IF EXISTS PRODUCT;
+DROP TABLE IF EXISTS HOLDINGS;
+DROP TABLE IF EXISTS HT_ProductInfo;
+
+CREATE TABLE status
+(
+ VDBName varchar(50) not null,
+ VDBVersion integer not null,
+ SchemaName varchar(50) not null,
+ Name varchar(256) not null,
+ TargetSchemaName varchar(50),
+ TargetName varchar(256) not null,
+ Valid boolean not null,
+ LoadState varchar(25) not null,
+ Cardinality long,
+ Updated timestamp not null,
+ LoadNumber long not null,
+ PRIMARY KEY (VDBName, VDBVersion, SchemaName, Name)
+);
+
+CREATE TABLE h2_stock_mat
+(
+ product_id integer,
+ SYMBOL varchar(16),
+ PRICE decimal(20,4),
+ COMPANY_NAME varchar(256)
+);
+
+CREATE TABLE mat_stock_staging
+(
+ product_id integer,
+ SYMBOL varchar(16),
+ PRICE decimal(20,4),
+ COMPANY_NAME varchar(256)
+);
+
+CREATE TABLE CUSTOMER
+(
+ SSN char(10),
+ FIRSTNAME varchar(64),
+ LASTNAME varchar(64),
+ ST_ADDRESS varchar(256),
+ APT_NUMBER varchar(32),
+ CITY varchar(64),
+ STATE varchar(32),
+ ZIPCODE varchar(10),
+ PHONE varchar(15),
+ CONSTRAINT CUSTOMER_PK PRIMARY KEY(SSN)
+);
+
+
+CREATE TABLE ACCOUNT
+(
+ ACCOUNT_ID integer,
+ SSN char(10),
+ STATUS char(10),
+ TYPE char(10),
+ DATEOPENED timestamp,
+ DATECLOSED timestamp,
+ CONSTRAINT ACCOUNT_PK PRIMARY KEY(ACCOUNT_ID)
+);
+
+
+CREATE TABLE PRODUCT (
+ ID integer,
+ SYMBOL varchar(16),
+ COMPANY_NAME varchar(256),
+ CONSTRAINT PRODUCT_PK PRIMARY KEY(ID)
+);
+
+
+CREATE TABLE HOLDINGS
+(
+ TRANSACTION_ID integer IDENTITY,
+ ACCOUNT_ID integer,
+ PRODUCT_ID integer,
+ PURCHASE_DATE timestamp,
+ SHARES_COUNT integer,
+ CONSTRAINT HOLDINGS_PK PRIMARY KEY (TRANSACTION_ID)
+);
+
+CREATE TABLE HT_ProductInfo
+(
+ id integer not null,
+ hib_sess_id CHAR(36)
+);
+
+
+
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01002','Joseph','Smith','1234 Main Street','Apartment 56','New York','New York','10174','(646)555-1776');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01003','Nicholas','Ferguson','202 Palomino Drive',null,'Pittsburgh','Pennsylvania','15071','(412)555-4327');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01004','Jane','Aire','15 State Street',null,'Philadelphia','Pennsylvania','19154','(814)555-6789');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01005','Charles','Jones','1819 Maple Street','Apartment 17F','Stratford','Connecticut','06614','(203)555-3947');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01006','Virginia','Jefferson','1710 South 51st Street','Apartment 3245','New York','New York','10175','(718)555-2693');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01007','Ralph','Bacon','57 Barn Swallow Avenue',null,'Charlotte','North Carolina','28205','(704)555-4576');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01008','Bonnie','Dragon','88 Cinderella Lane',null,'Jacksonville','Florida','32225','(904)555-6514');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01009','Herbert','Smith','12225 Waterfall Way','Building 100, Suite 9','Portland','Oregon','97220','(971)555-7803');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01015','Jack','Corby','1 Lone Star Way',null,'Dallas','Texas','75231','(469)555-8023');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01019','Robin','Evers','1814 Falcon Avenue',null,'Atlanta','Georgia','30355','(470)555-4390');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01020','Lloyd','Abercrombie','1954 Hughes Parkway',null,'Los Angeles','California','90099','(213)555-2312');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01021','Scott','Watters','24 Mariner Way',null,'Seattle','Washington','98124','(206)555-6790');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01022','Sandra','King','96 Lakefront Parkway',null,'Minneapolis','Minnesota','55426','(651)555-9017');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01027','Maryanne','Peters','35 Grand View Circle','Apartment 5F','Cincinnati','Ohio','45232','(513)555-9067');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01034','Corey','Snyder','1760 Boston Commons Avenue','Suite 543','Boston','Massachusetts','02136 ','(617)555-3546');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01035','Henry','Thomas','345 Hilltop Parkway',null,'San Francisco','California','94129','(415)555-2093');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01036','James','Drew','876 Lakefront Lane',null,'Cleveland','Ohio','44107','(216)555-6523');
+
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980002,'CST01002','Personal ','Active ', '1998-02-01 00:00:00.000', NULL);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980003,'CST01003','Personal ','Active ','1998-03-06 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980004,'CST01004','Personal ','Active ','1998-03-07 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980005,'CST01005','Personal ','Active ','1998-06-15 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980006,'CST01006','Personal ','Active ','1998-09-15 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19990007,'CST01007','Personal ','Active ','1999-01-20 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19990008,'CST01008','Personal ','Active ','1999-04-16 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19990009,'CST01009','Business ','Active ','1999-06-25 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000015,'CST01015','Personal ','Closed ','2000-04-20 00:00:00.000','2001-06-22 00:00:00.000');
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000019,'CST01019','Personal ','Active ','2000-10-08 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000020,'CST01020','Personal ','Active ','2000-10-20 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000021,'CST01021','Personal ','Active ','2000-12-05 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20010022,'CST01022','Personal ','Active ','2001-01-05 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20010027,'CST01027','Personal ','Active ','2001-08-22 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20020034,'CST01034','Business ','Active ','2002-01-22 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20020035,'CST01035','Personal ','Active ','2002-02-12 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20020036,'CST01036','Personal ','Active ','2002-03-22 00:00:00.000',null);
+
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1002,'BA','The Boeing Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1003,'MON','Monsanto Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1004,'PNRA','Panera Bread Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1005,'SY','Sybase Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1006,'BTU','Peabody Energy');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1007,'IBM','International Business Machines Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1008,'DELL','Dell Computer Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1010,'HPQ','Hewlett-Packard Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1011,'GTW','Gateway, Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1012,'GE','General Electric Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1013,'MRK','Merck and Company Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1014,'DIS','Walt Disney Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1015,'MCD','McDonalds Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1016,'DOW','Dow Chemical Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1018,'GM','General Motors Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1024,'SBGI','Sinclair Broadcast Group Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1025,'COLM','Columbia Sportsware Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1026,'COLB','Columbia Banking System Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1028,'BSY','British Sky Broadcasting Group PLC');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1029,'CSVFX','Columbia Strategic Value Fund');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1030,'CMTFX','Columbia Technology Fund');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1031,'F','Ford Motor Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1033,'FCZ','Ford Motor Credit Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1034,'SAP','SAP AG');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1036,'TM','Toyota Motor Corporation');
+
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980002,1008,'1998-02-01 00:00:00.000',50);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980002,1036,'1998-02-01 00:00:00.000',25);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1002,'1998-03-06 00:00:00.000',100);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1029,'1998-03-06 00:00:00.000',25);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1016,'1998-03-06 00:00:00.000',51);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980004,1011,'1998-03-07 00:00:00.000',30);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980005,1024,'1998-06-15 00:00:00.000',18);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980006,1033,'1998-09-15 00:00:00.000',200);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990007,1031,'1999-01-20 00:00:00.000',65);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990008,1012,'1999-04-16 00:00:00.000',102);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990007,1008,'1999-05-11 00:00:00.000',85);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990008,1005,'1999-05-21 00:00:00.000',105);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990009,1004,'1999-06-25 00:00:00.000',120);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1024,'1999-07-22 00:00:00.000',150);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000015,1018,'2000-04-20 00:00:00.000',135);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980006,1030,'2000-06-12 00:00:00.000',91);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000019,1029,'2000-10-08 00:00:00.000',351);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000020,1030,'2000-10-20 00:00:00.000',127);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000020,1018,'2000-11-14 00:00:00.000',100);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000019,1031,'2000-11-15 00:00:00.000',125);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000021,1028,'2000-12-05 00:00:00.000',400);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010022,1006,'2001-01-05 00:00:00.000',237);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990008,1015,'2001-01-23 00:00:00.000',180);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980005,1025,'2001-03-23 00:00:00.000',125);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010027,1024,'2001-08-22 00:00:00.000',70);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000020,1006,'2001-11-14 00:00:00.000',125);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1029,'2001-11-15 00:00:00.000',100);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000021,1011,'2001-12-18 00:00:00.000',44);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010027,1028,'2001-12-19 00:00:00.000',115);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020034,1024,'2002-01-22 00:00:00.000',189);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990009,1029,'2002-01-24 00:00:00.000',30);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020035,1013,'2002-02-12 00:00:00.000',110);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020035,1034,'2002-02-13 00:00:00.000',70);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020034,1003,'2002-02-22 00:00:00.000',25);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000019,1013,'2002-02-26 00:00:00.000',195);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980004,1007,'2002-03-05 00:00:00.000',250);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000021,1014,'2002-03-12 00:00:00.000',300);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010027,1024,'2002-03-14 00:00:00.000',136);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020036,1012,'2002-03-22 00:00:00.000',54);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020036,1010,'2002-03-26 00:00:00.000',189);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980005,1010,'2002-04-01 00:00:00.000',26);
+
+
diff --git a/datavirt/jdv-jdg-integration-ext/injected-files/customer-schema_keep.sql b/datavirt/jdv-jdg-integration-ext/injected-files/customer-schema_keep.sql
new file mode 100644
index 0000000..5d94dbf
--- /dev/null
+++ b/datavirt/jdv-jdg-integration-ext/injected-files/customer-schema_keep.sql
@@ -0,0 +1,158 @@
+CREATE TABLE CUSTOMER
+(
+ SSN char(10),
+ FIRSTNAME varchar(64),
+ LASTNAME varchar(64),
+ ST_ADDRESS varchar(256),
+ APT_NUMBER varchar(32),
+ CITY varchar(64),
+ STATE varchar(32),
+ ZIPCODE varchar(10),
+ PHONE varchar(15),
+ CONSTRAINT CUSTOMER_PK PRIMARY KEY(SSN)
+);
+
+
+CREATE TABLE ACCOUNT
+(
+ ACCOUNT_ID integer,
+ SSN char(10),
+ STATUS char(10),
+ TYPE char(10),
+ DATEOPENED timestamp,
+ DATECLOSED timestamp,
+ CONSTRAINT ACCOUNT_PK PRIMARY KEY(ACCOUNT_ID)
+);
+
+
+CREATE TABLE PRODUCT (
+ ID integer,
+ SYMBOL varchar(16),
+ COMPANY_NAME varchar(256),
+ CONSTRAINT PRODUCT_PK PRIMARY KEY(ID)
+);
+
+
+CREATE TABLE HOLDINGS
+(
+ TRANSACTION_ID integer IDENTITY,
+ ACCOUNT_ID integer,
+ PRODUCT_ID integer,
+ PURCHASE_DATE timestamp,
+ SHARES_COUNT integer,
+ CONSTRAINT HOLDINGS_PK PRIMARY KEY (TRANSACTION_ID)
+);
+
+CREATE TABLE HT_ProductInfo
+(
+ id integer not null,
+ hib_sess_id CHAR(36)
+);
+
+
+
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01002','Joseph','Smith','1234 Main Street','Apartment 56','New York','New York','10174','(646)555-1776');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01003','Nicholas','Ferguson','202 Palomino Drive',null,'Pittsburgh','Pennsylvania','15071','(412)555-4327');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01004','Jane','Aire','15 State Street',null,'Philadelphia','Pennsylvania','19154','(814)555-6789');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01005','Charles','Jones','1819 Maple Street','Apartment 17F','Stratford','Connecticut','06614','(203)555-3947');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01006','Virginia','Jefferson','1710 South 51st Street','Apartment 3245','New York','New York','10175','(718)555-2693');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01007','Ralph','Bacon','57 Barn Swallow Avenue',null,'Charlotte','North Carolina','28205','(704)555-4576');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01008','Bonnie','Dragon','88 Cinderella Lane',null,'Jacksonville','Florida','32225','(904)555-6514');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01009','Herbert','Smith','12225 Waterfall Way','Building 100, Suite 9','Portland','Oregon','97220','(971)555-7803');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01015','Jack','Corby','1 Lone Star Way',null,'Dallas','Texas','75231','(469)555-8023');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01019','Robin','Evers','1814 Falcon Avenue',null,'Atlanta','Georgia','30355','(470)555-4390');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01020','Lloyd','Abercrombie','1954 Hughes Parkway',null,'Los Angeles','California','90099','(213)555-2312');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01021','Scott','Watters','24 Mariner Way',null,'Seattle','Washington','98124','(206)555-6790');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01022','Sandra','King','96 Lakefront Parkway',null,'Minneapolis','Minnesota','55426','(651)555-9017');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01027','Maryanne','Peters','35 Grand View Circle','Apartment 5F','Cincinnati','Ohio','45232','(513)555-9067');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01034','Corey','Snyder','1760 Boston Commons Avenue','Suite 543','Boston','Massachusetts','02136 ','(617)555-3546');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01035','Henry','Thomas','345 Hilltop Parkway',null,'San Francisco','California','94129','(415)555-2093');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01036','James','Drew','876 Lakefront Lane',null,'Cleveland','Ohio','44107','(216)555-6523');
+
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980002,'CST01002','Personal ','Active ', '1998-02-01 00:00:00.000', NULL);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980003,'CST01003','Personal ','Active ','1998-03-06 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980004,'CST01004','Personal ','Active ','1998-03-07 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980005,'CST01005','Personal ','Active ','1998-06-15 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980006,'CST01006','Personal ','Active ','1998-09-15 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19990007,'CST01007','Personal ','Active ','1999-01-20 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19990008,'CST01008','Personal ','Active ','1999-04-16 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19990009,'CST01009','Business ','Active ','1999-06-25 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000015,'CST01015','Personal ','Closed ','2000-04-20 00:00:00.000','2001-06-22 00:00:00.000');
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000019,'CST01019','Personal ','Active ','2000-10-08 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000020,'CST01020','Personal ','Active ','2000-10-20 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000021,'CST01021','Personal ','Active ','2000-12-05 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20010022,'CST01022','Personal ','Active ','2001-01-05 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20010027,'CST01027','Personal ','Active ','2001-08-22 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20020034,'CST01034','Business ','Active ','2002-01-22 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20020035,'CST01035','Personal ','Active ','2002-02-12 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20020036,'CST01036','Personal ','Active ','2002-03-22 00:00:00.000',null);
+
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1002,'BA','The Boeing Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1003,'MON','Monsanto Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1004,'PNRA','Panera Bread Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1005,'SY','Sybase Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1006,'BTU','Peabody Energy');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1007,'IBM','International Business Machines Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1008,'DELL','Dell Computer Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1010,'HPQ','Hewlett-Packard Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1011,'GTW','Gateway, Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1012,'GE','General Electric Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1013,'MRK','Merck and Company Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1014,'DIS','Walt Disney Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1015,'MCD','McDonalds Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1016,'DOW','Dow Chemical Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1018,'GM','General Motors Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1024,'SBGI','Sinclair Broadcast Group Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1025,'COLM','Columbia Sportsware Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1026,'COLB','Columbia Banking System Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1028,'BSY','British Sky Broadcasting Group PLC');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1029,'CSVFX','Columbia Strategic Value Fund');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1030,'CMTFX','Columbia Technology Fund');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1031,'F','Ford Motor Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1033,'FCZ','Ford Motor Credit Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1034,'SAP','SAP AG');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1036,'TM','Toyota Motor Corporation');
+
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980002,1008,'1998-02-01 00:00:00.000',50);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980002,1036,'1998-02-01 00:00:00.000',25);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1002,'1998-03-06 00:00:00.000',100);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1029,'1998-03-06 00:00:00.000',25);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1016,'1998-03-06 00:00:00.000',51);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980004,1011,'1998-03-07 00:00:00.000',30);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980005,1024,'1998-06-15 00:00:00.000',18);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980006,1033,'1998-09-15 00:00:00.000',200);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990007,1031,'1999-01-20 00:00:00.000',65);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990008,1012,'1999-04-16 00:00:00.000',102);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990007,1008,'1999-05-11 00:00:00.000',85);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990008,1005,'1999-05-21 00:00:00.000',105);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990009,1004,'1999-06-25 00:00:00.000',120);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1024,'1999-07-22 00:00:00.000',150);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000015,1018,'2000-04-20 00:00:00.000',135);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980006,1030,'2000-06-12 00:00:00.000',91);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000019,1029,'2000-10-08 00:00:00.000',351);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000020,1030,'2000-10-20 00:00:00.000',127);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000020,1018,'2000-11-14 00:00:00.000',100);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000019,1031,'2000-11-15 00:00:00.000',125);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000021,1028,'2000-12-05 00:00:00.000',400);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010022,1006,'2001-01-05 00:00:00.000',237);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990008,1015,'2001-01-23 00:00:00.000',180);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980005,1025,'2001-03-23 00:00:00.000',125);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010027,1024,'2001-08-22 00:00:00.000',70);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000020,1006,'2001-11-14 00:00:00.000',125);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1029,'2001-11-15 00:00:00.000',100);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000021,1011,'2001-12-18 00:00:00.000',44);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010027,1028,'2001-12-19 00:00:00.000',115);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020034,1024,'2002-01-22 00:00:00.000',189);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990009,1029,'2002-01-24 00:00:00.000',30);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020035,1013,'2002-02-12 00:00:00.000',110);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020035,1034,'2002-02-13 00:00:00.000',70);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020034,1003,'2002-02-22 00:00:00.000',25);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000019,1013,'2002-02-26 00:00:00.000',195);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980004,1007,'2002-03-05 00:00:00.000',250);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000021,1014,'2002-03-12 00:00:00.000',300);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010027,1024,'2002-03-14 00:00:00.000',136);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020036,1012,'2002-03-22 00:00:00.000',54);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020036,1010,'2002-03-26 00:00:00.000',189);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980005,1010,'2002-04-01 00:00:00.000',26);
+
+
diff --git a/datavirt/jdv-jdg-integration-ext/injected-files/data/marketdata-price.txt b/datavirt/jdv-jdg-integration-ext/injected-files/data/marketdata-price.txt
new file mode 100644
index 0000000..5170504
--- /dev/null
+++ b/datavirt/jdv-jdg-integration-ext/injected-files/data/marketdata-price.txt
@@ -0,0 +1,11 @@
+SYMBOL,PRICE
+RHT,30.00
+BA,42.75
+MON,78.75
+PNRA,84.97
+SY,24.30
+BTU,41.25
+IBM,80.89
+DELL,10.75
+HPQ,31.52
+GE,16.45
diff --git a/datavirt/jdv-jdg-integration-ext/injected-files/data/marketdata-price1.txt b/datavirt/jdv-jdg-integration-ext/injected-files/data/marketdata-price1.txt
new file mode 100644
index 0000000..2fd49e9
--- /dev/null
+++ b/datavirt/jdv-jdg-integration-ext/injected-files/data/marketdata-price1.txt
@@ -0,0 +1,10 @@
+SYMBOL,PRICE
+MRK,27.20
+DIS,20.53
+MCD,54.55
+DOW,21.80
+GM,3.15
+SBGI,2.19
+COLM,33.89
+COLB,12.64
+BSY,23.81
diff --git a/datavirt/jdv-jdg-integration-ext/injected-files/excel-files/otherholdings.xls b/datavirt/jdv-jdg-integration-ext/injected-files/excel-files/otherholdings.xls
new file mode 100644
index 0000000..9d12c37
Binary files /dev/null and b/datavirt/jdv-jdg-integration-ext/injected-files/excel-files/otherholdings.xls differ
diff --git a/datavirt/jdv-jdg-integration-ext/injected-modules/com/client/quickstart/addressbook/pojos/main/jdg-remote-cache-materialization-pojos.jar b/datavirt/jdv-jdg-integration-ext/injected-modules/com/client/quickstart/addressbook/pojos/main/jdg-remote-cache-materialization-pojos.jar
new file mode 100644
index 0000000..cdd8388
Binary files /dev/null and b/datavirt/jdv-jdg-integration-ext/injected-modules/com/client/quickstart/addressbook/pojos/main/jdg-remote-cache-materialization-pojos.jar differ
diff --git a/datavirt/jdv-jdg-integration-ext/injected-modules/com/client/quickstart/addressbook/pojos/main/jdg-remote-cache-pojos.jar b/datavirt/jdv-jdg-integration-ext/injected-modules/com/client/quickstart/addressbook/pojos/main/jdg-remote-cache-pojos.jar
new file mode 100644
index 0000000..c057b88
Binary files /dev/null and b/datavirt/jdv-jdg-integration-ext/injected-modules/com/client/quickstart/addressbook/pojos/main/jdg-remote-cache-pojos.jar differ
diff --git a/datavirt/jdv-jdg-integration-ext/injected-modules/com/client/quickstart/addressbook/pojos/main/module.xml b/datavirt/jdv-jdg-integration-ext/injected-modules/com/client/quickstart/addressbook/pojos/main/module.xml
new file mode 100644
index 0000000..63b8267
--- /dev/null
+++ b/datavirt/jdv-jdg-integration-ext/injected-modules/com/client/quickstart/addressbook/pojos/main/module.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/datavirt/jdv-jdg-integration-ext/install.sh b/datavirt/jdv-jdg-integration-ext/install.sh
new file mode 100755
index 0000000..743f4da
--- /dev/null
+++ b/datavirt/jdv-jdg-integration-ext/install.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+set -x
+
+source /usr/local/s2i/install-common.sh
+source /usr/local/s2i/install-teiid-common.sh
+
+injected_dir=$1
+
+install_modules ${injected_dir}/injected-modules
+
diff --git a/datavirt/jdv-jdg-integration-ext/resourceadapters.env b/datavirt/jdv-jdg-integration-ext/resourceadapters.env
new file mode 100644
index 0000000..7e48d05
--- /dev/null
+++ b/datavirt/jdv-jdg-integration-ext/resourceadapters.env
@@ -0,0 +1,62 @@
+RESOURCE_ADAPTERS=JDG,QSEXCEL,QSFILE,QSWS
+
+QSEXCEL_ID=fileQSExcel
+QSEXCEL_MODULE_SLOT=main
+QSEXCEL_MODULE_ID=org.jboss.teiid.resource-adapter.file
+QSEXCEL_CONNECTION_CLASS=org.teiid.resource.adapter.file.FileManagedConnectionFactory
+QSEXCEL_CONNECTION_JNDI=java:/excel-file
+QSEXCEL_PROPERTY_ParentDirectory=/home/jboss/source/extensions/extras/injected-files/excel-files/
+QSEXCEL_PROPERTY_AllowParentPaths=true
+
+QSFILE_ID=fileQS
+QSFILE_MODULE_SLOT=main
+QSFILE_MODULE_ID=org.jboss.teiid.resource-adapter.file
+QSFILE_CONNECTION_CLASS=org.teiid.resource.adapter.file.FileManagedConnectionFactory
+QSFILE_CONNECTION_JNDI=java:/marketdata-file
+QSFILE_PROPERTY_ParentDirectory=/home/jboss/source/extensions/extras/injected-files/data
+QSFILE_PROPERTY_AllowParentPaths=true
+
+QSWS_ID=wsQS
+QSWS_MODULE_SLOT=main
+QSWS_MODULE_ID=org.jboss.teiid.resource-adapter.webservice
+QSWS_CONNECTION_CLASS=org.teiid.resource.adapter.ws.WSManagedConnectionFactory
+QSWS_CONNECTION_JNDI=java:/CustomerRESTWebSvcSource
+QSWS_PROPERTY_EndPoint=http://localhost:8080/CustomerRESTWebSvc/MyRESTApplication/customerList
+
+JDG_ID=infinispanRemQSDSL
+JDG_MODULE_SLOT=main
+JDG_MODULE_ID=org.jboss.teiid.resource-adapter.infinispan.dsl
+JDG_CONNECTION_CLASS=org.teiid.resource.adapter.infinispan.dsl.InfinispanManagedConnectionFactory
+JDG_CONNECTION_JNDI=java:/infinispanRemoteDSL
+JDG_PROPERTY_CacheTypeMap=ADDRESSBOOK:org.jboss.as.quickstarts.datagrid.hotrod.query.domain.Person\;id
+JDG_PROPERTY_ProtobufDefinitionFile=/quickstart/addressbook.proto
+JDG_PROPERTY_MessageDescriptor=quickstart.Person
+JDG_PROPERTY_Module=com.client.quickstart.addressbook.pojos
+JDG_PROPERTY_MessageMarshallers=org.jboss.as.quickstarts.datagrid.hotrod.query.domain.Person:org.jboss.as.quickstarts.datagrid.hotrod.query.marshallers.PersonMarshaller
+JDG_PROPERTY_RemoteServerList=${DATAGRID_APP_HOTROD_SERVICE_HOST}:${DATAGRID_APP_HOTROD_SERVICE_PORT}
+JDG_PROPERTY_StagingCacheName=ADDRESSBOOK_staging
+JDG_PROPERTY_AliasCacheName=ADDRESSBOOK_alias
+#JDG_PROPERTY_HotRodClientPropertiesFile=/etc/hotrod-secret-volume/hotrod.properties
+#JDG_PROPERTY_AuthUserName=jdguser
+#JDG_PROPERTY_AuthPassword=Password1%
+#JDG_PROPERTY_AuthApplicationRealm=ApplicationRealm
+#JDG_PROPERTY_AuthSASLMechanism=DIGEST-MD5
+#JDG_PROPERTY_AuthServerName=jdg-server
+#JDG_PROPERTY_AdminUserName=jdguser
+#JDG_PROPERTY_AdminPassword=Password1%
+JDG_POOL_MIN_SIZE=1
+JDG_POOL_MAX_SIZE=3
+JDG_POOL_PREFILL=false
+JDG_POOL_FLUSH_STRATEGY=EntirePool
+
+#RESOURCE ADAPTERS
+#RESOURCE_ADAPTERS=JDG
+
+#JDG_ID=java:/infinispanRemoteHotRod
+#JDG_MODULE_SLOT=main
+#JDG_MODULE_ID=org.jboss.teiid.resource-adapter.infinispan.hotrod
+#JDG_CONNECTION_CLASS=org.teiid.resource.adapter.infinispan.hotrod.InfinispanManagedConnectionFactory
+#JDG_CONNECTION_JNDI=java:/infinispanRemoteHotRod
+#JDG_PROPERTY_CacheTypeMap=default:org.jboss.as.quickstarts.datagrid.hotrod.query.domain.Person;id
+#JDG_PROPERTY_Module=com.client.quickstart.addressbook.pojos
+#JDG_PROPERTY_RemoteServerList=datavirt-hotrod.demo.svc.cluster.local:11333
diff --git a/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/README.md b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/README.md
new file mode 100644
index 0000000..ef6e815
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/README.md
@@ -0,0 +1,136 @@
+---
+Level: Basic
+Technologies: Teiid, Dynamic VDB, Native Queries, VDB reuse, reading data from JDBC, delimited file and Excel File
+Target Product: DV
+Product Versions: DV 6.0+
+Source: https://github.com/teiid/teiid-quickstarts
+---
+
+Dynamicvdb-datafederation is the 'Hello World' example for Teiid.
+================================
+
+## VDB:
+
+* Portfolio - source models, view's, native query
+
+
+## What is it?
+
+This quickstart demonstrates how to define a dynamic vdb to enable data federation across
+multiple data sources (i.e., relational and text file). This will demonstrate the
+following:
+
+- how to federate data from a relational data source, a text file-based data source and an EXCEL File
+- how to define a view using DDL
+- how to define a translator override to support native queries
+- how to define a second vdb that reuses (extends) another vdb
+
+
+This example uses the H2 database, which is referenced as the "accounts-ds" data source in the server,
+but the creation SQL can be adapted to another database if you choose.
+
+Note: this example provides the base setup for which other quick starts depend upon.
+
+
+## System requirements
+
+If you have not done so, please review the System Requirements [../README.md](../README.md)
+
+## Setup
+
+1) Start the server
+
+ To start the server, open a command line and navigate to the "bin" directory under the root directory of the JBoss server and run:
+
+ For Linux: ./standalone.sh
+ for Windows: standalone.bat
+
+ If Teiid isn't configured in the default configuration, append the following arguments to the command to specify the configuration
+
+ -c {configuration.file}
+
+ Example: -c standalone-teiid.xml
+
+2) Copy teiid support files
+
+- Copy the "teiidfiles" directory to the $JBOSS_HOME/ directory
+
+ The src/teiidfiles directory should contain:
+ (1) customer-schema.sql
+ (2) customer-schema-drop.sql
+ (3) data/marketdata-price.txt
+ (4) data/marketdata-price1.txt
+
+when complete, you should see $JBOSS_HOME/teiidfiles
+
+3) Setup the h2 datasource and file resource adapter
+
+- run the following CLI script
+
+ - cd to the $JBOSS_HOME/bin directory
+ - execute: ./jboss-cli.sh --connect --file={path}/dynamicvdb-datafederation/src/scripts/setup.cli
+
+4) Teiid Deployment:
+
+Copy (deploy) the following VDB related files to the $JBOSS_HOME/standalone/deployments directory
+
+ * Portfolio VDB
+ - src/vdb/portfolio-vdb.xml
+ - src/vdb/portfolio-vdb.xml.dodeploy
+
+
+You should see the server log indicate the VDB is active with a message like: TEIID40003 VDB Portfolio.1 is set to ACTIVE
+
+5) Open the admin console to make sure the VDB is deployed
+
+ * open a brower to http://localhost:9990/console
+
+6) See "Query Demonstrations" below to demonstrate data federation.
+
+## Query Demonstrations
+
+==== Using the simpleclient example ====
+
+1) Change your working directory to "${quickstart.install.dir}/simpleclient"
+
+2) Use the simpleclient example to run the following queries:
+
+Example: mvn exec:java -Dvdb="portfolio" -Dsql="example query" -Dusername="xx" -Dpassword="xx"
+
+## Examples:
+
+### Source and Federated Queries
+
+> NOTE: For the following examples, use the vdb: Portfolio
+
+
+* Example a - queries the relational source
+
+ select * from product
+
+
+* Example b - queries the text file-based source
+
+ select stock.* from (call MarketData.getTextFiles('*.txt')) f, TEXTTABLE(f.file COLUMNS symbol string, price bigdecimal HEADER) stock
+
+
+* Example c - performs a join between the relational source and the text file-based source. The files returned from the getTextFiles procedure are passed to the TEXTTABLE table function (via the nested table correlated reference f.file). The TEXTTABLE function expects a
+text file with a HEADER containing entries for at least symbol and price columns.
+
+ select product.symbol, stock.price, company_name from product, (call MarketData.getTextFiles('*.txt')) f, TEXTTABLE(f.file COLUMNS symbol string, price bigdecimal HEADER) stock where product.symbol=stock.symbol
+
+
+* Example d - queries the EXCEL file to retrieve other personal holdings valuations
+
+ select * from OtherHoldings.PersonalHoldings
+
+### Native Query
+
+> NOTE: For the following examples, use the vdb: Portfolio
+
+
+* Example a - Issue query that contains a NATIVE sql call that will be directly issued against the H2 database. This is useful if the function isn't supported by the translator (check the documentation for the types of translators that support NATIVE sql). Note that the translator override in the vdb xml enabling support for native queries has to be set.
+
+ select x.* FROM (call native('select Shares_Count, MONTHNAME(Purchase_Date) from Holdings')) w, ARRAYTABLE(w.tuple COLUMNS "Shares_Count" integer, "MonthPurchased" string ) AS x
+
+
diff --git a/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/pom.xml b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/pom.xml
new file mode 100644
index 0000000..d519819
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/pom.xml
@@ -0,0 +1,18 @@
+
+
+
+
+ org.jboss.teiid.quickstart
+ teiid-quickstart-parent
+ 3.0.0.redhat-63-10
+
+
+ 4.0.0
+ org.jboss.teiid.quickstart
+ dynamicvdb-datafederation
+ pom
+
+ DynamicVDB Data Federation Quickstart
+ This quickstart demonstrates how to federate data from a relational data source with a text file-based data source.
+
+
diff --git a/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/scripts/setup.cli b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/scripts/setup.cli
new file mode 100644
index 0000000..ccdc72f
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/scripts/setup.cli
@@ -0,0 +1,16 @@
+/subsystem=resource-adapters/resource-adapter=fileQS:add(module=org.jboss.teiid.resource-adapter.file)
+/subsystem=resource-adapters/resource-adapter=fileQS/connection-definitions=fileDS:add(jndi-name=java:/marketdata-file, class-name=org.teiid.resource.adapter.file.FileManagedConnectionFactory, enabled=true, use-java-context=true)
+/subsystem=resource-adapters/resource-adapter=fileQS/connection-definitions=fileDS/config-properties=ParentDirectory:add(value=${jboss.home.dir}/teiidfiles/data/)
+/subsystem=resource-adapters/resource-adapter=fileQS/connection-definitions=fileDS/config-properties=AllowParentPaths:add(value=true)
+/subsystem=resource-adapters/resource-adapter=fileQS:activate
+
+/subsystem=resource-adapters/resource-adapter=fileQSExcel:add(module=org.jboss.teiid.resource-adapter.file)
+/subsystem=resource-adapters/resource-adapter=fileQSExcel/connection-definitions=fileDS:add(jndi-name=java:/excel-file, class-name=org.teiid.resource.adapter.file.FileManagedConnectionFactory, enabled=true, use-java-context=true)
+/subsystem=resource-adapters/resource-adapter=fileQSExcel/connection-definitions=fileDS/config-properties=ParentDirectory:add(value=${jboss.home.dir}/teiidfiles/excelFiles/)
+/subsystem=resource-adapters/resource-adapter=fileQSExcel/connection-definitions=fileDS/config-properties=AllowParentPaths:add(value=true)
+/subsystem=resource-adapters/resource-adapter=fileQSExcel:activate
+
+/subsystem=datasources/data-source=h2:add(jndi-name=java:/accounts-ds, enabled=true, use-java-context=true, driver-name=h2, connection-url="jdbc:h2:mem:accounts;INIT=RUNSCRIPT FROM '${jboss.home.dir}/teiidfiles/customer-schema.sql'\;",user-name=sa, password=sa)
+/subsystem=datasources/data-source=h2:enable
+
+/:reload
diff --git a/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/customer-schema-drop.sql b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/customer-schema-drop.sql
new file mode 100644
index 0000000..b6ca9a7
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/customer-schema-drop.sql
@@ -0,0 +1,27 @@
+
+DROP TABLE HOLDINGS
+;
+
+DROP TABLE PRODUCT
+;
+
+DROP TABLE ACCOUNT
+;
+
+DROP TABLE CUSTOMER
+;
+
+DROP TABLE h2_stock_mat
+;
+
+DROP TABLE STATUS
+;
+
+
+
+
+
+
+
+
+
diff --git a/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/customer-schema.sql b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/customer-schema.sql
new file mode 100644
index 0000000..ccab557
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/customer-schema.sql
@@ -0,0 +1,199 @@
+DROP TABLE IF EXISTS status;
+DROP TABLE IF EXISTS h2_stock_mat;
+DROP TABLE IF EXISTS mat_stock_staging;
+DROP TABLE IF EXISTS CUSTOMER;
+DROP TABLE IF EXISTS ACCOUNT;
+DROP TABLE IF EXISTS PRODUCT;
+DROP TABLE IF EXISTS HOLDINGS;
+DROP TABLE IF EXISTS HT_ProductInfo;
+
+CREATE TABLE status
+(
+ VDBName varchar(50) not null,
+ VDBVersion integer not null,
+ SchemaName varchar(50) not null,
+ Name varchar(256) not null,
+ TargetSchemaName varchar(50),
+ TargetName varchar(256) not null,
+ Valid boolean not null,
+ LoadState varchar(25) not null,
+ Cardinality long,
+ Updated timestamp not null,
+ LoadNumber long not null,
+ PRIMARY KEY (VDBName, VDBVersion, SchemaName, Name)
+);
+
+CREATE TABLE h2_stock_mat
+(
+ product_id integer,
+ SYMBOL varchar(16),
+ PRICE decimal(20,4),
+ COMPANY_NAME varchar(256)
+);
+
+CREATE TABLE mat_stock_staging
+(
+ product_id integer,
+ SYMBOL varchar(16),
+ PRICE decimal(20,4),
+ COMPANY_NAME varchar(256)
+);
+
+CREATE TABLE CUSTOMER
+(
+ SSN char(10),
+ FIRSTNAME varchar(64),
+ LASTNAME varchar(64),
+ ST_ADDRESS varchar(256),
+ APT_NUMBER varchar(32),
+ CITY varchar(64),
+ STATE varchar(32),
+ ZIPCODE varchar(10),
+ PHONE varchar(15),
+ CONSTRAINT CUSTOMER_PK PRIMARY KEY(SSN)
+);
+
+
+CREATE TABLE ACCOUNT
+(
+ ACCOUNT_ID integer,
+ SSN char(10),
+ STATUS char(10),
+ TYPE char(10),
+ DATEOPENED timestamp,
+ DATECLOSED timestamp,
+ CONSTRAINT ACCOUNT_PK PRIMARY KEY(ACCOUNT_ID)
+);
+
+
+CREATE TABLE PRODUCT (
+ ID integer,
+ SYMBOL varchar(16),
+ COMPANY_NAME varchar(256),
+ CONSTRAINT PRODUCT_PK PRIMARY KEY(ID)
+);
+
+
+CREATE TABLE HOLDINGS
+(
+ TRANSACTION_ID integer IDENTITY,
+ ACCOUNT_ID integer,
+ PRODUCT_ID integer,
+ PURCHASE_DATE timestamp,
+ SHARES_COUNT integer,
+ CONSTRAINT HOLDINGS_PK PRIMARY KEY (TRANSACTION_ID)
+);
+
+CREATE TABLE HT_ProductInfo
+(
+ id integer not null,
+ hib_sess_id CHAR(36)
+);
+
+
+
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01002','Joseph','Smith','1234 Main Street','Apartment 56','New York','New York','10174','(646)555-1776');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01003','Nicholas','Ferguson','202 Palomino Drive',null,'Pittsburgh','Pennsylvania','15071','(412)555-4327');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01004','Jane','Aire','15 State Street',null,'Philadelphia','Pennsylvania','19154','(814)555-6789');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01005','Charles','Jones','1819 Maple Street','Apartment 17F','Stratford','Connecticut','06614','(203)555-3947');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01006','Virginia','Jefferson','1710 South 51st Street','Apartment 3245','New York','New York','10175','(718)555-2693');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01007','Ralph','Bacon','57 Barn Swallow Avenue',null,'Charlotte','North Carolina','28205','(704)555-4576');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01008','Bonnie','Dragon','88 Cinderella Lane',null,'Jacksonville','Florida','32225','(904)555-6514');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01009','Herbert','Smith','12225 Waterfall Way','Building 100, Suite 9','Portland','Oregon','97220','(971)555-7803');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01015','Jack','Corby','1 Lone Star Way',null,'Dallas','Texas','75231','(469)555-8023');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01019','Robin','Evers','1814 Falcon Avenue',null,'Atlanta','Georgia','30355','(470)555-4390');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01020','Lloyd','Abercrombie','1954 Hughes Parkway',null,'Los Angeles','California','90099','(213)555-2312');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01021','Scott','Watters','24 Mariner Way',null,'Seattle','Washington','98124','(206)555-6790');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01022','Sandra','King','96 Lakefront Parkway',null,'Minneapolis','Minnesota','55426','(651)555-9017');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01027','Maryanne','Peters','35 Grand View Circle','Apartment 5F','Cincinnati','Ohio','45232','(513)555-9067');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01034','Corey','Snyder','1760 Boston Commons Avenue','Suite 543','Boston','Massachusetts','02136 ','(617)555-3546');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01035','Henry','Thomas','345 Hilltop Parkway',null,'San Francisco','California','94129','(415)555-2093');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01036','James','Drew','876 Lakefront Lane',null,'Cleveland','Ohio','44107','(216)555-6523');
+
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980002,'CST01002','Personal ','Active ', '1998-02-01 00:00:00.000', NULL);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980003,'CST01003','Personal ','Active ','1998-03-06 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980004,'CST01004','Personal ','Active ','1998-03-07 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980005,'CST01005','Personal ','Active ','1998-06-15 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980006,'CST01006','Personal ','Active ','1998-09-15 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19990007,'CST01007','Personal ','Active ','1999-01-20 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19990008,'CST01008','Personal ','Active ','1999-04-16 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19990009,'CST01009','Business ','Active ','1999-06-25 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000015,'CST01015','Personal ','Closed ','2000-04-20 00:00:00.000','2001-06-22 00:00:00.000');
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000019,'CST01019','Personal ','Active ','2000-10-08 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000020,'CST01020','Personal ','Active ','2000-10-20 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000021,'CST01021','Personal ','Active ','2000-12-05 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20010022,'CST01022','Personal ','Active ','2001-01-05 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20010027,'CST01027','Personal ','Active ','2001-08-22 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20020034,'CST01034','Business ','Active ','2002-01-22 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20020035,'CST01035','Personal ','Active ','2002-02-12 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20020036,'CST01036','Personal ','Active ','2002-03-22 00:00:00.000',null);
+
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1002,'BA','The Boeing Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1003,'MON','Monsanto Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1004,'PNRA','Panera Bread Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1005,'SY','Sybase Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1006,'BTU','Peabody Energy');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1007,'IBM','International Business Machines Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1008,'DELL','Dell Computer Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1010,'HPQ','Hewlett-Packard Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1011,'GTW','Gateway, Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1012,'GE','General Electric Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1013,'MRK','Merck and Company Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1014,'DIS','Walt Disney Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1015,'MCD','McDonalds Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1016,'DOW','Dow Chemical Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1018,'GM','General Motors Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1024,'SBGI','Sinclair Broadcast Group Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1025,'COLM','Columbia Sportsware Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1026,'COLB','Columbia Banking System Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1028,'BSY','British Sky Broadcasting Group PLC');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1029,'CSVFX','Columbia Strategic Value Fund');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1030,'CMTFX','Columbia Technology Fund');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1031,'F','Ford Motor Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1033,'FCZ','Ford Motor Credit Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1034,'SAP','SAP AG');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1036,'TM','Toyota Motor Corporation');
+
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980002,1008,'1998-02-01 00:00:00.000',50);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980002,1036,'1998-02-01 00:00:00.000',25);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1002,'1998-03-06 00:00:00.000',100);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1029,'1998-03-06 00:00:00.000',25);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1016,'1998-03-06 00:00:00.000',51);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980004,1011,'1998-03-07 00:00:00.000',30);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980005,1024,'1998-06-15 00:00:00.000',18);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980006,1033,'1998-09-15 00:00:00.000',200);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990007,1031,'1999-01-20 00:00:00.000',65);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990008,1012,'1999-04-16 00:00:00.000',102);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990007,1008,'1999-05-11 00:00:00.000',85);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990008,1005,'1999-05-21 00:00:00.000',105);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990009,1004,'1999-06-25 00:00:00.000',120);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1024,'1999-07-22 00:00:00.000',150);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000015,1018,'2000-04-20 00:00:00.000',135);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980006,1030,'2000-06-12 00:00:00.000',91);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000019,1029,'2000-10-08 00:00:00.000',351);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000020,1030,'2000-10-20 00:00:00.000',127);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000020,1018,'2000-11-14 00:00:00.000',100);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000019,1031,'2000-11-15 00:00:00.000',125);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000021,1028,'2000-12-05 00:00:00.000',400);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010022,1006,'2001-01-05 00:00:00.000',237);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990008,1015,'2001-01-23 00:00:00.000',180);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980005,1025,'2001-03-23 00:00:00.000',125);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010027,1024,'2001-08-22 00:00:00.000',70);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000020,1006,'2001-11-14 00:00:00.000',125);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1029,'2001-11-15 00:00:00.000',100);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000021,1011,'2001-12-18 00:00:00.000',44);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010027,1028,'2001-12-19 00:00:00.000',115);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020034,1024,'2002-01-22 00:00:00.000',189);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990009,1029,'2002-01-24 00:00:00.000',30);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020035,1013,'2002-02-12 00:00:00.000',110);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020035,1034,'2002-02-13 00:00:00.000',70);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020034,1003,'2002-02-22 00:00:00.000',25);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000019,1013,'2002-02-26 00:00:00.000',195);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980004,1007,'2002-03-05 00:00:00.000',250);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000021,1014,'2002-03-12 00:00:00.000',300);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010027,1024,'2002-03-14 00:00:00.000',136);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020036,1012,'2002-03-22 00:00:00.000',54);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020036,1010,'2002-03-26 00:00:00.000',189);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980005,1010,'2002-04-01 00:00:00.000',26);
+
+
diff --git a/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/customer-schema_keep.sql b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/customer-schema_keep.sql
new file mode 100644
index 0000000..5d94dbf
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/customer-schema_keep.sql
@@ -0,0 +1,158 @@
+CREATE TABLE CUSTOMER
+(
+ SSN char(10),
+ FIRSTNAME varchar(64),
+ LASTNAME varchar(64),
+ ST_ADDRESS varchar(256),
+ APT_NUMBER varchar(32),
+ CITY varchar(64),
+ STATE varchar(32),
+ ZIPCODE varchar(10),
+ PHONE varchar(15),
+ CONSTRAINT CUSTOMER_PK PRIMARY KEY(SSN)
+);
+
+
+CREATE TABLE ACCOUNT
+(
+ ACCOUNT_ID integer,
+ SSN char(10),
+ STATUS char(10),
+ TYPE char(10),
+ DATEOPENED timestamp,
+ DATECLOSED timestamp,
+ CONSTRAINT ACCOUNT_PK PRIMARY KEY(ACCOUNT_ID)
+);
+
+
+CREATE TABLE PRODUCT (
+ ID integer,
+ SYMBOL varchar(16),
+ COMPANY_NAME varchar(256),
+ CONSTRAINT PRODUCT_PK PRIMARY KEY(ID)
+);
+
+
+CREATE TABLE HOLDINGS
+(
+ TRANSACTION_ID integer IDENTITY,
+ ACCOUNT_ID integer,
+ PRODUCT_ID integer,
+ PURCHASE_DATE timestamp,
+ SHARES_COUNT integer,
+ CONSTRAINT HOLDINGS_PK PRIMARY KEY (TRANSACTION_ID)
+);
+
+CREATE TABLE HT_ProductInfo
+(
+ id integer not null,
+ hib_sess_id CHAR(36)
+);
+
+
+
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01002','Joseph','Smith','1234 Main Street','Apartment 56','New York','New York','10174','(646)555-1776');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01003','Nicholas','Ferguson','202 Palomino Drive',null,'Pittsburgh','Pennsylvania','15071','(412)555-4327');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01004','Jane','Aire','15 State Street',null,'Philadelphia','Pennsylvania','19154','(814)555-6789');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01005','Charles','Jones','1819 Maple Street','Apartment 17F','Stratford','Connecticut','06614','(203)555-3947');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01006','Virginia','Jefferson','1710 South 51st Street','Apartment 3245','New York','New York','10175','(718)555-2693');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01007','Ralph','Bacon','57 Barn Swallow Avenue',null,'Charlotte','North Carolina','28205','(704)555-4576');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01008','Bonnie','Dragon','88 Cinderella Lane',null,'Jacksonville','Florida','32225','(904)555-6514');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01009','Herbert','Smith','12225 Waterfall Way','Building 100, Suite 9','Portland','Oregon','97220','(971)555-7803');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01015','Jack','Corby','1 Lone Star Way',null,'Dallas','Texas','75231','(469)555-8023');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01019','Robin','Evers','1814 Falcon Avenue',null,'Atlanta','Georgia','30355','(470)555-4390');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01020','Lloyd','Abercrombie','1954 Hughes Parkway',null,'Los Angeles','California','90099','(213)555-2312');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01021','Scott','Watters','24 Mariner Way',null,'Seattle','Washington','98124','(206)555-6790');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01022','Sandra','King','96 Lakefront Parkway',null,'Minneapolis','Minnesota','55426','(651)555-9017');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01027','Maryanne','Peters','35 Grand View Circle','Apartment 5F','Cincinnati','Ohio','45232','(513)555-9067');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01034','Corey','Snyder','1760 Boston Commons Avenue','Suite 543','Boston','Massachusetts','02136 ','(617)555-3546');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01035','Henry','Thomas','345 Hilltop Parkway',null,'San Francisco','California','94129','(415)555-2093');
+INSERT INTO CUSTOMER (SSN,FIRSTNAME,LASTNAME,ST_ADDRESS,APT_NUMBER,CITY,STATE,ZIPCODE,PHONE) VALUES ('CST01036','James','Drew','876 Lakefront Lane',null,'Cleveland','Ohio','44107','(216)555-6523');
+
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980002,'CST01002','Personal ','Active ', '1998-02-01 00:00:00.000', NULL);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980003,'CST01003','Personal ','Active ','1998-03-06 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980004,'CST01004','Personal ','Active ','1998-03-07 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980005,'CST01005','Personal ','Active ','1998-06-15 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19980006,'CST01006','Personal ','Active ','1998-09-15 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19990007,'CST01007','Personal ','Active ','1999-01-20 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19990008,'CST01008','Personal ','Active ','1999-04-16 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (19990009,'CST01009','Business ','Active ','1999-06-25 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000015,'CST01015','Personal ','Closed ','2000-04-20 00:00:00.000','2001-06-22 00:00:00.000');
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000019,'CST01019','Personal ','Active ','2000-10-08 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000020,'CST01020','Personal ','Active ','2000-10-20 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20000021,'CST01021','Personal ','Active ','2000-12-05 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20010022,'CST01022','Personal ','Active ','2001-01-05 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20010027,'CST01027','Personal ','Active ','2001-08-22 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20020034,'CST01034','Business ','Active ','2002-01-22 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20020035,'CST01035','Personal ','Active ','2002-02-12 00:00:00.000',null);
+INSERT INTO ACCOUNT (ACCOUNT_ID,SSN,STATUS,TYPE,DATEOPENED,DATECLOSED) VALUES (20020036,'CST01036','Personal ','Active ','2002-03-22 00:00:00.000',null);
+
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1002,'BA','The Boeing Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1003,'MON','Monsanto Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1004,'PNRA','Panera Bread Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1005,'SY','Sybase Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1006,'BTU','Peabody Energy');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1007,'IBM','International Business Machines Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1008,'DELL','Dell Computer Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1010,'HPQ','Hewlett-Packard Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1011,'GTW','Gateway, Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1012,'GE','General Electric Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1013,'MRK','Merck and Company Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1014,'DIS','Walt Disney Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1015,'MCD','McDonalds Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1016,'DOW','Dow Chemical Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1018,'GM','General Motors Corporation');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1024,'SBGI','Sinclair Broadcast Group Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1025,'COLM','Columbia Sportsware Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1026,'COLB','Columbia Banking System Incorporated');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1028,'BSY','British Sky Broadcasting Group PLC');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1029,'CSVFX','Columbia Strategic Value Fund');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1030,'CMTFX','Columbia Technology Fund');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1031,'F','Ford Motor Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1033,'FCZ','Ford Motor Credit Company');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1034,'SAP','SAP AG');
+INSERT INTO PRODUCT (ID,SYMBOL,COMPANY_NAME) VALUES(1036,'TM','Toyota Motor Corporation');
+
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980002,1008,'1998-02-01 00:00:00.000',50);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980002,1036,'1998-02-01 00:00:00.000',25);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1002,'1998-03-06 00:00:00.000',100);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1029,'1998-03-06 00:00:00.000',25);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1016,'1998-03-06 00:00:00.000',51);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980004,1011,'1998-03-07 00:00:00.000',30);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980005,1024,'1998-06-15 00:00:00.000',18);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980006,1033,'1998-09-15 00:00:00.000',200);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990007,1031,'1999-01-20 00:00:00.000',65);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990008,1012,'1999-04-16 00:00:00.000',102);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990007,1008,'1999-05-11 00:00:00.000',85);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990008,1005,'1999-05-21 00:00:00.000',105);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990009,1004,'1999-06-25 00:00:00.000',120);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1024,'1999-07-22 00:00:00.000',150);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000015,1018,'2000-04-20 00:00:00.000',135);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980006,1030,'2000-06-12 00:00:00.000',91);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000019,1029,'2000-10-08 00:00:00.000',351);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000020,1030,'2000-10-20 00:00:00.000',127);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000020,1018,'2000-11-14 00:00:00.000',100);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000019,1031,'2000-11-15 00:00:00.000',125);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000021,1028,'2000-12-05 00:00:00.000',400);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010022,1006,'2001-01-05 00:00:00.000',237);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990008,1015,'2001-01-23 00:00:00.000',180);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980005,1025,'2001-03-23 00:00:00.000',125);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010027,1024,'2001-08-22 00:00:00.000',70);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000020,1006,'2001-11-14 00:00:00.000',125);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980003,1029,'2001-11-15 00:00:00.000',100);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000021,1011,'2001-12-18 00:00:00.000',44);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010027,1028,'2001-12-19 00:00:00.000',115);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020034,1024,'2002-01-22 00:00:00.000',189);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19990009,1029,'2002-01-24 00:00:00.000',30);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020035,1013,'2002-02-12 00:00:00.000',110);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020035,1034,'2002-02-13 00:00:00.000',70);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020034,1003,'2002-02-22 00:00:00.000',25);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000019,1013,'2002-02-26 00:00:00.000',195);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980004,1007,'2002-03-05 00:00:00.000',250);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20000021,1014,'2002-03-12 00:00:00.000',300);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20010027,1024,'2002-03-14 00:00:00.000',136);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020036,1012,'2002-03-22 00:00:00.000',54);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (20020036,1010,'2002-03-26 00:00:00.000',189);
+INSERT INTO HOLDINGS (ACCOUNT_ID,PRODUCT_ID,PURCHASE_DATE,SHARES_COUNT) VALUES (19980005,1010,'2002-04-01 00:00:00.000',26);
+
+
diff --git a/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/data/marketdata-price.txt b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/data/marketdata-price.txt
new file mode 100644
index 0000000..5170504
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/data/marketdata-price.txt
@@ -0,0 +1,11 @@
+SYMBOL,PRICE
+RHT,30.00
+BA,42.75
+MON,78.75
+PNRA,84.97
+SY,24.30
+BTU,41.25
+IBM,80.89
+DELL,10.75
+HPQ,31.52
+GE,16.45
diff --git a/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/data/marketdata-price1.txt b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/data/marketdata-price1.txt
new file mode 100644
index 0000000..da2d8bd
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/data/marketdata-price1.txt
@@ -0,0 +1,10 @@
+SYMBOL,PRICE
+MRK,27.20
+DIS,20.53
+MCD,54.55
+DOW,21.80
+GM,3.15
+SBGI,2.19
+COLM,33.89
+COLB,12.64
+BSY,23.81
\ No newline at end of file
diff --git a/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/excelFiles/otherholdings.xls b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/excelFiles/otherholdings.xls
new file mode 100644
index 0000000..9d12c37
Binary files /dev/null and b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/teiidfiles/excelFiles/otherholdings.xls differ
diff --git a/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/vdb/portfolio-vdb.xml b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/vdb/portfolio-vdb.xml
new file mode 100644
index 0000000..2949b73
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/vdb/portfolio-vdb.xml
@@ -0,0 +1,117 @@
+
+
+
+ The Portfolio Dynamic VDB
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/vdb/portfolio-vdb.xml.dodeploy b/datavirt/jdv-jdg-integration/dynamicvdb-datafederation/src/vdb/portfolio-vdb.xml.dodeploy
new file mode 100644
index 0000000..e69de29
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/JDG_SERVER_README.md b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/JDG_SERVER_README.md
new file mode 100644
index 0000000..f952001
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/JDG_SERVER_README.md
@@ -0,0 +1,177 @@
+remote-query: Query JDG remotely through Hotrod
+================================================
+
+What is this?
+-----------
+
+This describes how to configure the JDG Server and the remote caches that will be used in this quick start.
+
+
+System requirements
+-------------------
+
+All you need to build this project is Java 6.0 (Java SDK 1.6) or newer, Maven 3.0 or newer.
+
+The application this project produces is designed to be run on JBoss Data Grid 6.x
+
+
+Configure Maven
+---------------
+
+If you have not yet done so, you must [Configure Maven](../../README.md#configure-maven) before testing the quickstarts.
+
+
+Configure JDG
+-------------
+
+1. Obtain JDG server distribution on Red Hat's Customer Portal at https://access.redhat.com/jbossnetwork/restricted/listSoftware.html
+
+2. Install a JDBC driver into JDG (since JDG includes H2 by default, this step may be skipped for the scope of this example). More information can be found in the DataSource Management chapter of the [Administration and Configuration Guide for JBoss Enterprise Application Platform](https://access.redhat.com/site/documentation/JBoss_Enterprise_Application_Platform) . _NOTE: JDG does not support deploying applications so one cannot install it as a deployment._
+
+3. This Quickstart uses JDBC to store the cache. To permit this, it's necessary to alter JDG configuration file (`JDG_HOME/standalone/configuration/standalone.xml`) to contain the following definitions:
+
+* Datasource subsystem definition:
+
+
+
+
+
+
+
+ jdbc:h2:mem:test;DB_CLOSE_DELAY=-1
+
+ h2
+
+
+ sa
+ sa
+
+
+
+
+
+ org.h2.jdbcx.JdbcDataSource
+
+
+
+
+
+* Infinispan subsystem definition:
+
+This subsytem will completely replace what's currently defined in the standalone.xml.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ram
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ram
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Start JDG
+---------
+
+1. Open a command line and navigate to the root of the JDG directory.
+2. The following shows the command line to start the server with the web profile:
+
+ For Linux: $JDG_HOME/bin/standalone.sh
+ For Windows: %JDG_HOME%\bin\standalone.bat
+
+
+
+
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/README.md b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/README.md
new file mode 100644
index 0000000..c1845d7
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/README.md
@@ -0,0 +1,149 @@
+---
+Level: Intermediate
+Technologies: Teiid, Infinispan, Hot Rod, Remote Query, Materialization
+Target Product: DV
+Product Versions: DV 6.1+, JDG 6.5+
+Source: https://github.com/teiid/teiid-quickstarts
+---
+
+JDG Remote-Cache Materialization Quickstart using JDG Hot Rod that supports Google Protocol Buffers for Serialization
+================================
+
+# What is it?
+
+This quickstart demonstrates how Teiid can connect to a remote JBoss Data Grid (JDG) to use as a caching data source to improve query performance.
+
+
+# Quick Start requirements
+
+- If you have not done so, please review the System Requirements [../README.md](../README.md)
+
+
+1. Teiid Server Prerequistes
+
+* JBoss application server to run Teiid
+* The Teiid Jboss distribution kit
+* The dynamicvdb-datafederation quickstart [../../dynamicvdb-datafederation/README.md] needs to be installed.
+
+2. JDG Server Prerequistes
+
+* JDG 6.5 server kit installed (used as the remote server)
+* JDG 6.5 HotRod modules kit (used by Teiid to access the remote cache)
+ > NOTE: You can obtain JDG kit distributions on Red Hat's Customer Portal at https://access.redhat.com/jbossnetwork/restricted/listSoftware.html
+
+
+# JDG setup
+
+1. Setup JDG Server
+
+- Install the JDG server
+- Configure caches based on the [./JDG_SERVER_README.md]
+
+
+2. Starting JDG Server
+
+- It is assumed that you will be running both servers on the same box, there start the JDG server by adding the following command line argument:
+ * -Djboss.socket.binding.port-offset=100
+
+Example: ./standalone.sh -Djboss.socket.binding.port-offset=100
+
+For the purpose of this quick start, it assumes running both servers on the same machine and is expecting the JDG server to have its ports incremented. The
+port adjustment has been made in the jdg.properties on the client side to match the above offset.
+
+# [PreRequistes] Dynamicvdb-datafederation quickstart
+
+* Install dynamicvdb-datafederation quickstart [../../dynamicvdb-datafederation/README.md]
+
+
+# Teiid jdg-remote-cache-materialization quickstart Setup
+
+1. build the jdg-remote-cache-materialization quickstart
+
+- run mvn -s ./settings.xml clean install
+
+- After building the quickstart, the jdg-remote-cache-materialization-pojos-jboss-as7-dist.zip should be found in the target directory.
+- This zip will be used later, where it is deployed to the Teiid server.
+
+
+# Setup Teiid Server
+AliasCacheName
+1. shutdown jbossas server, if not already.
+
+2. deploy pojo Module
+ - take the jdg-remote-cache-pojos-jboss-as7-dist.zip and unzip at
+
+3. Install the JBoss Data Grid version of the hot rod client modules kit for EAP into /modules/ of your Teiid/EAP instance.
+ See Red Hat: http://access.redhat.com to obtain the kit.
+
+
+4. setup the infinispan resource adapter
+
+* configure for materialization
+ - open the file: {jbossas.server.dir}/docs/teiid/datasources/infinispan/infinispan-remote-query-materialize-annotations-dsl-ds.xml
+ - copy and paste the resource-adapter section it into the server configuration, under the section:
+
+
+
+
+5. Edit the module.xml for org.jboss.teiid.resource-adapter.infinispan.dsl resource adapter to add the pojo dependency
+
+example:
+
+6. Start the server
+
+ To start the server, open a command line and navigate to the "bin" directory under the root directory of the JBoss server and run:
+
+ For Linux: ./standalone.sh
+ for Windows: standalone.bat
+
+ If Teiid isn't configured in the default configuration, append the following arguments to the command to specify the configuration
+
+ -c {configuration.file}
+
+ Example: -c standalone-teiid.xml
+
+
+7. Install the infinispan-cache-dsl translator
+
+ - cd to the ${JBOSS_HOME}/bin directory
+ - execute: ./jboss-cli.sh --connect --file=../docs/teiid/datasources/infinispan/add-infinispan-cache-dsl-translator.cli
+
+
+8. deploy the VDB
+
+ - copy files jdg-remote-cache-mat-vdb.xml and jdg-remote-cache-mat-vdb.xml.dodeploy to {jbossas.server.dir}/standalone/deployments
+
+
+# Query Demonstrations
+
+==== Using the simpleclient example ====
+
+1) Change your working directory to "${quickstart.install.dir}/simpleclient"
+
+2) Use the simpleclient example to run the following queries:
+
+Example: mvn exec:java -Dvdb="PeopleMat" -Dsql="select name, id, email from PersonMatModel.PersonMatView" -Dusername="teiidUser" -Dpassword="pwd"
+
+
+or
+
+
+Use a sql tool, like SQuirreL, to connect and issue following example query:
+
+- connect: jdbc:teiid:PeopleMat@mm://localhost:31000
+
+1. Query for reading from the materialized cache
+
+* select name, id, email from PersonMatModel.PersonMatView
+
+
+2. To test the materialization process, do the following:
+
+* perform a delete from the Customer table
+ - delete from Customer where SSN = 'CST01002'
+
+ Customer: Joseph Smith,19980002,Joseph.Smith@email.com is removed
+
+* wait 2 min's because the refresh rate is set at 1 min.
+* perform query from #1 above, and should see row missing for SSN = CST01002
+
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/build.metadata b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/build.metadata
new file mode 100644
index 0000000..6fbd961
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/build.metadata
@@ -0,0 +1,12 @@
+# Created by buildmetadata-maven-plugin 1.7.0 ( SHA: 6f444cae )
+build.artifactId=jdg-remote-cache-materialization
+build.groupId=org.jboss.teiid.quickstart
+build.java.compiler=HotSpot 64-Bit Tiered Compilers
+build.java.runtime.name=OpenJDK Runtime Environment
+build.java.runtime.version=1.8.0_111-b15
+build.java.vendor=Oracle Corporation
+build.java.vm=OpenJDK 64-Bit Server VM
+build.maven.execution.cmdline=clean install
+build.maven.version=3.0.5
+build.version=3.0.0.redhat-63-10
+build.version.full=3.0.0.redhat-63-10
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/kits/jboss-as7-dist.xml b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/kits/jboss-as7-dist.xml
new file mode 100644
index 0000000..73e6503
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/kits/jboss-as7-dist.xml
@@ -0,0 +1,32 @@
+
+
+
+ jboss-as7-dist
+
+
+ zip
+
+
+ false
+ modules
+
+
+
+ kits/jboss-as7/
+ .
+ true
+
+ **/*
+
+
+
+ target
+ modules/com/client/quickstart/addressbook/pojos/main/
+ false
+
+ jdg-remote-cache-materialization-pojos.jar
+
+
+
+
+
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/kits/jboss-as7/modules/com/client/quickstart/addressbook/pojos/main/module.xml b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/kits/jboss-as7/modules/com/client/quickstart/addressbook/pojos/main/module.xml
new file mode 100644
index 0000000..eeefbb0
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/kits/jboss-as7/modules/com/client/quickstart/addressbook/pojos/main/module.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/pom.xml b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/pom.xml
new file mode 100644
index 0000000..d782881
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/pom.xml
@@ -0,0 +1,139 @@
+
+
+
+
+ teiid-quickstart-parent
+ org.jboss.teiid.quickstart
+ 3.0.0.redhat-63-10
+
+
+ 4.0.0
+ jdg-remote-cache-materialization
+ JDG Remote Cache Materialization Quickstart
+ This quickstart demonstrates how to use a remote JDG cache for materialization
+
+
+
+
+ org.jboss.as.quickstarts.datagrid.hotrod.query.AddressBookManager
+
+
+
+
+
+
+ org.infinispan
+ infinispan-bom
+ ${version.org.infinispan.6}
+ pom
+ import
+
+
+
+
+
+
+ org.infinispan
+ infinispan-commons
+ provided
+
+
+ org.infinispan
+ infinispan-query
+ provided
+
+
+ org.infinispan
+ infinispan-query-dsl
+ provided
+
+
+ org.infinispan
+ infinispan-client-hotrod
+ provided
+
+
+ org.infinispan
+ infinispan-remote-query-client
+
+
+ org.infinispan.protostream
+ protostream
+ provided
+
+
+ org.hibernate
+ hibernate-search-engine
+ provided
+
+
+
+
+
+
+ ${project.artifactId}-pojos
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-jar-plugin
+ 2.5
+
+
+ make-a-jar
+ compile
+
+ jar
+
+
+
+
+
+
+
+
+
+ org.codehaus.mojo
+ exec-maven-plugin
+ ${version.org.codehaus.mojo.exec.plugin}
+
+
+
+ java
+
+
+
+
+ test
+ ${main.class.remote-query}
+
+
+
+
+
+ maven-assembly-plugin
+
+
+ kits/jboss-as7-dist.xml
+
+
+ 2.4.1
+
+
+ create-assemblies
+ package
+
+ single
+
+
+
+
+
+
+
+
+
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/java/org/jboss/as/quickstarts/datagrid/hotrod/query/domain/Memo.java b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/java/org/jboss/as/quickstarts/datagrid/hotrod/query/domain/Memo.java
new file mode 100644
index 0000000..46115dc
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/java/org/jboss/as/quickstarts/datagrid/hotrod/query/domain/Memo.java
@@ -0,0 +1,92 @@
+package org.jboss.as.quickstarts.datagrid.hotrod.query.domain;
+
+import org.infinispan.protostream.annotations.ProtoDoc;
+import org.infinispan.protostream.annotations.ProtoEnumValue;
+import org.infinispan.protostream.annotations.ProtoField;
+
+/**
+ * @author Adrian Nistor
+ */
+@ProtoDoc("@Indexed")
+public class Memo {
+
+ private int id;
+
+ private String text;
+
+ private Person author;
+
+ private boolean isRead;
+
+ private Priority priority;
+
+ public enum Priority {
+
+ @ProtoEnumValue(number = 1)
+ LOW,
+
+ @ProtoEnumValue(number = 2)
+ HIGH,
+
+ @ProtoEnumValue(number = 3)
+ WHATEVER
+ }
+
+ @ProtoField(number = 1, required = true)
+ public int getId() {
+ return id;
+ }
+
+ public void setId(int id) {
+ this.id = id;
+ }
+
+ @ProtoDoc("@IndexedField")
+ @ProtoField(number = 2)
+ public String getText() {
+ return text;
+ }
+
+ public void setText(String text) {
+ this.text = text;
+ }
+
+ @ProtoDoc("@IndexedField")
+ @ProtoField(number = 3)
+ public Person getAuthor() {
+ return author;
+ }
+
+ public void setAuthor(Person author) {
+ this.author = author;
+ }
+
+ @ProtoField(number = 4, defaultValue = "false")
+ public boolean isRead() {
+ return isRead;
+ }
+
+ public void setRead(boolean isRead) {
+ this.isRead = isRead;
+ }
+
+ @ProtoField(number = 5)
+ public Priority getPriority() {
+ return priority;
+ }
+
+ public void setPriority(Priority priority) {
+ this.priority = priority;
+ }
+
+ @Override
+ public String toString() {
+ return "Memo{" +
+ "id=" + id +
+ ", text='" + text + '\'' +
+ ", author=" + author +
+ ", isRead=" + isRead +
+ ", priority=" + priority +
+ '}';
+ }
+}
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/java/org/jboss/as/quickstarts/datagrid/hotrod/query/domain/Person.java b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/java/org/jboss/as/quickstarts/datagrid/hotrod/query/domain/Person.java
new file mode 100644
index 0000000..f19b00b
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/java/org/jboss/as/quickstarts/datagrid/hotrod/query/domain/Person.java
@@ -0,0 +1,77 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual
+ * contributors by the @authors tag. See the copyright.txt in the
+ * distribution for a full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.jboss.as.quickstarts.datagrid.hotrod.query.domain;
+
+import java.util.List;
+import org.infinispan.protostream.annotations.ProtoField;
+
+
+/**
+ * @author Adrian Nistor
+ */
+public class Person {
+
+ @ProtoField(number = 2, required = true)
+ public String name;
+ @ProtoField(number = 1, required = true)
+ public int id;
+ @ProtoField(number = 3)
+ public String email;
+ private List phones;
+
+ public String getName() {
+ return name;
+ }
+
+ public void setName(String name) {
+ this.name = name;
+ }
+
+ public int getId() {
+ return id;
+ }
+
+ public void setId(int id) {
+ this.id = id;
+ }
+
+ public String getEmail() {
+ return email;
+ }
+
+ public void setEmail(String email) {
+ this.email = email;
+ }
+
+ public List getPhones() {
+ return phones;
+ }
+
+ public void setPhones(List phones) {
+ this.phones = phones;
+ }
+
+ @Override
+ public String toString() {
+ return "Person{" +
+ "id=" + id +
+ ", name='" + name +
+ "', email='" + email + '\'' +
+ ", phones=" + phones +
+ '}';
+ }
+}
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/java/org/jboss/as/quickstarts/datagrid/hotrod/query/domain/PhoneNumber.java b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/java/org/jboss/as/quickstarts/datagrid/hotrod/query/domain/PhoneNumber.java
new file mode 100644
index 0000000..5f2aea0
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/java/org/jboss/as/quickstarts/datagrid/hotrod/query/domain/PhoneNumber.java
@@ -0,0 +1,50 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual
+ * contributors by the @authors tag. See the copyright.txt in the
+ * distribution for a full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.jboss.as.quickstarts.datagrid.hotrod.query.domain;
+
+/**
+ * @author Adrian Nistor
+ */
+public class PhoneNumber {
+
+ private String number;
+ private PhoneType type;
+
+ public String getNumber() {
+ return number;
+ }
+
+ public void setNumber(String number) {
+ this.number = number;
+ }
+
+ public PhoneType getType() {
+ return type;
+ }
+
+ public void setType(PhoneType type) {
+ this.type = type;
+ }
+
+ @Override
+ public String toString() {
+ return "PhoneNumber{" +
+ "number='" + number + '\'' +
+ ", type=" + type +
+ '}';
+ }
+}
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/java/org/jboss/as/quickstarts/datagrid/hotrod/query/domain/PhoneType.java b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/java/org/jboss/as/quickstarts/datagrid/hotrod/query/domain/PhoneType.java
new file mode 100644
index 0000000..5081f50
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/java/org/jboss/as/quickstarts/datagrid/hotrod/query/domain/PhoneType.java
@@ -0,0 +1,26 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual
+ * contributors by the @authors tag. See the copyright.txt in the
+ * distribution for a full listing of individual contributors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * http://www.apache.org/licenses/LICENSE-2.0
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.jboss.as.quickstarts.datagrid.hotrod.query.domain;
+
+/**
+ * @author Adrian Nistor
+ */
+public enum PhoneType {
+ MOBILE,
+ HOME,
+ WORK
+}
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/resources/jdg.properties b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/resources/jdg.properties
new file mode 100644
index 0000000..f93105e
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/resources/jdg.properties
@@ -0,0 +1,25 @@
+#
+# JBoss, Home of Professional Open Source
+# Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual
+# contributors by the @authors tag. See the copyright.txt in the
+# distribution for a full listing of individual contributors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+jdg.host=172.30.71.32
+jdg.hotrod.port=11333
+
+# use one of 'addressbook_indexed' or 'addressbook'
+jdg.cache=addressbook_indexed
+jdg.mat.cache=addressbook_indexed_mat
+jdg.alias.cache=aliasCache
+
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/resources/quickstart/addressbook.proto b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/resources/quickstart/addressbook.proto
new file mode 100644
index 0000000..48a976f
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/main/resources/quickstart/addressbook.proto
@@ -0,0 +1,32 @@
+package quickstart;
+
+/* @Indexed */
+message Person {
+
+ /* @IndexedField */
+ required string name = 1;
+
+ /* @IndexedField(index=true, store=false) */
+ required int32 id = 2;
+
+ optional string email = 3;
+
+ enum PhoneType {
+ MOBILE = 0;
+ HOME = 1;
+ WORK = 2;
+ }
+
+ /* @Indexed */
+ message PhoneNumber {
+
+ /* @IndexedField */
+ required string number = 1;
+
+ /* @IndexedField(index=false, store=false) */
+ optional PhoneType type = 2 [default = HOME];
+ }
+
+ /* @IndexedField(index=true, store=false) */
+ repeated PhoneNumber phone = 4;
+}
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/vdb/jdg-remote-cache-mat-vdb.xml b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/vdb/jdg-remote-cache-mat-vdb.xml
new file mode 100644
index 0000000..c60eb45
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/vdb/jdg-remote-cache-mat-vdb.xml
@@ -0,0 +1,66 @@
+
+
+
+ Shows how to materialize into an Infinispan remote cache
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/vdb/jdg-remote-cache-mat-vdb.xml.dodeploy b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/vdb/jdg-remote-cache-mat-vdb.xml.dodeploy
new file mode 100644
index 0000000..5b90490
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/vdb/jdg-remote-cache-mat-vdb.xml.dodeploy
@@ -0,0 +1 @@
+jdg-local-cache-mat-vdb.xml
\ No newline at end of file
diff --git a/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/vdb/jdg-remote-cache-mat-vdb.xml.josef b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/vdb/jdg-remote-cache-mat-vdb.xml.josef
new file mode 100644
index 0000000..269793b
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/jdg-remote-cache-materialization/src/vdb/jdg-remote-cache-mat-vdb.xml.josef
@@ -0,0 +1,91 @@
+
+
+
+ Shows how to materialize into an Infinispan remote cache
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/datavirt/jdv-jdg-integration/pom.xml b/datavirt/jdv-jdg-integration/pom.xml
new file mode 100644
index 0000000..c6da66d
--- /dev/null
+++ b/datavirt/jdv-jdg-integration/pom.xml
@@ -0,0 +1,7242 @@
+
+
+
+ org.jboss.integration-platform
+ jboss-integration-platform-parent
+ 6.0.0.CR30-redhat-1
+
+
+
+ 4.0.0
+ org.jboss.teiid.quickstart
+ teiid-quickstart-parent
+ pom
+ 3.0.0.redhat-63-10
+ Teiid Quickstart Parent
+ Quickstarts for the Teiid project
+
+ http://jboss.org/teiid
+
+
+ GNU Lesser General Public License
+ http://www.gnu.org/copyleft/lesser.html
+ repo
+ A business-friendly OSS license
+
+
+
+
+
+
+
+
+
+ UTF-8
+
+ false
+
+ 1.0.3.redhat-4
+
+ 6.0.0.CR30-redhat-1
+
+ 8.12.5.redhat-8
+ modules/system/layers/dv
+
+ 1.0.1.Final-redhat-3
+ ${version.org.jboss.as}
+
+ 1.3.2
+
+ 6.4.0.Final-redhat-4
+
+ jdg-6.5
+ 4.6.0.Final-redhat-2
+ 1.0.0.redhat-7
+ 3.0.16.Final
+ 1.4.0.redhat-4
+ 3.0.0.redhat-63-10
+ 4.3.6.redhat-1
+
+ 6.4.9.GA
+ 6.1.0.Final
+
+
+
+ 3.1
+
+ 4.3.3.redhat-1
+
+ 1.0.0.SP4-redhat-6
+
+ 1.9.5
+
+ 4.11
+
+
+
+
+
+
+ org.jboss.integration-platform
+ jboss-integration-platform-parent
+ 6.0.0.CR30-redhat-1
+ pom
+
+
+ org.modeshape
+ modeshape
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-assembly-descriptors
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-assembly-descriptors
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape.bom
+ modeshape-bom-embedded
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-client
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-client
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-common
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-common
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-common
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-common
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-common
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-connector-cmis
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-connector-cmis
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-connector-cmis
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-connector-cmis
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-connector-cmis
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-connector-git
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-connector-git
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-connector-git
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-connector-git
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-connector-git
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-connector-jdbc-metadata
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-connector-jdbc-metadata
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-connector-jdbc-metadata
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-connector-jdbc-metadata
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-connector-jdbc-metadata
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-connectors
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-distribution
+ 3.8.4.GA-redhat-10
+ zip
+ javadoc
+
+
+ org.modeshape
+ modeshape-distribution
+ 3.8.4.GA-redhat-10
+ zip
+ jbosseap-dist
+
+
+ org.modeshape
+ modeshape-distribution
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-extractor-tika
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-extractor-tika
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-extractor-tika
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-extractor-tika
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-extractor-tika
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-extractors
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-integration
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jbossas-cmis-war
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jbossas-cmis-war
+ 3.8.4.GA-redhat-10
+ war
+
+
+ org.modeshape
+ modeshape-jbossas-explorer-war
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jbossas-explorer-war
+ 3.8.4.GA-redhat-10
+ war
+
+
+ org.modeshape
+ modeshape-jbossas-integration-tests
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-jbossas-integration-tests
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-jbossas-integration-tests
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-jbossas-integration-tests
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-jbossas-integration-tests
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jbossas-kit-tests
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-jbossas-kit-tests
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-jbossas-kit-tests
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-jbossas-kit-tests
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-jbossas-kit-tests
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jbossas-subsystem
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-jbossas-subsystem
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-jbossas-subsystem
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-jbossas-subsystem
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-jbossas-subsystem
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jbossas-web-rest-war
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jbossas-web-rest-war
+ 3.8.4.GA-redhat-10
+ war
+
+
+ org.modeshape
+ modeshape-jbossas-web-webdav-war
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jbossas-web-webdav-war
+ 3.8.4.GA-redhat-10
+ war
+
+
+ org.modeshape
+ modeshape-jbossas7
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jca
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-jca
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-jca
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-jca
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jca-rar
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jca-rar
+ 3.8.4.GA-redhat-10
+ rar
+
+
+ org.modeshape
+ modeshape-jcr
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-jcr
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-jcr
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-jcr
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-jcr
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jcr-api
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-jcr-api
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-jcr-api
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jdbc
+ 3.8.4.GA-redhat-10
+ jar-with-dependencies
+
+
+ org.modeshape
+ modeshape-jdbc
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-jdbc
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-jdbc
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-jdbc
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-jdbc
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-jdbc-local
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-jdbc-local
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-jdbc-local
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-jdbc-local
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-jdbc-local
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-parent
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-schematic
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-schematic
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-schematic
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-schematic
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-schematic
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-sequencer-ddl
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-sequencer-ddl
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-sequencer-ddl
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-sequencer-ddl
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-sequencer-ddl
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-sequencer-images
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-sequencer-images
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-sequencer-images
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-sequencer-images
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-sequencer-images
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-sequencer-java
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-sequencer-java
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-sequencer-java
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-sequencer-java
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-sequencer-java
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-sequencer-mp3
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-sequencer-mp3
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-sequencer-mp3
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-sequencer-mp3
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-sequencer-mp3
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-sequencer-msoffice
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-sequencer-msoffice
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-sequencer-msoffice
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-sequencer-msoffice
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-sequencer-msoffice
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-sequencer-sramp
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-sequencer-sramp
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-sequencer-sramp
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-sequencer-text
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-sequencer-text
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-sequencer-text
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-sequencer-text
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-sequencer-text
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-sequencer-wsdl
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-sequencer-wsdl
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-sequencer-wsdl
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-sequencer-wsdl
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-sequencer-wsdl
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-sequencer-xml
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-sequencer-xml
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-sequencer-xml
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-sequencer-xml
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-sequencer-xml
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-sequencer-xsd
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-sequencer-xsd
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-sequencer-xsd
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-sequencer-xsd
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-sequencer-xsd
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-sequencer-zip
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-sequencer-zip
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-sequencer-zip
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-sequencer-zip
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-sequencer-zip
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-sequencers
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-unit-test
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-unit-test
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-unit-test
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-unit-test
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-unit-test
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-web
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-web-cmis
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-web-cmis
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-web-cmis
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-web-cmis
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-web-cmis
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-web-cmis-war
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-web-cmis-war
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-web-cmis-war
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-web-cmis-war
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-web-cmis-war
+ 3.8.4.GA-redhat-10
+ war
+
+
+ org.modeshape
+ modeshape-web-explorer
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-web-explorer
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-web-explorer
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-web-explorer-war
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-web-explorer-war
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-web-explorer-war
+ 3.8.4.GA-redhat-10
+ war
+
+
+ org.modeshape
+ modeshape-web-jcr
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-web-jcr
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-web-jcr
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-web-jcr
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-web-jcr
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-web-jcr-rest
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-web-jcr-rest
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-web-jcr-rest
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-web-jcr-rest-client
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-web-jcr-rest-client
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-web-jcr-rest-client
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-web-jcr-rest-client
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-web-jcr-rest-client
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-web-jcr-rest-war
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-web-jcr-rest-war
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-web-jcr-rest-war
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-web-jcr-rest-war
+ 3.8.4.GA-redhat-10
+ war
+
+
+ org.modeshape
+ modeshape-web-jcr-webdav
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-web-jcr-webdav
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-web-jcr-webdav
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-web-jcr-webdav
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-web-jcr-webdav
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-web-jcr-webdav-war
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-web-jcr-webdav-war
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-web-jcr-webdav-war
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-web-jcr-webdav-war
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-web-jcr-webdav-war
+ 3.8.4.GA-redhat-10
+ war
+
+
+ org.modeshape
+ modeshape-webdav
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-webdav
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-webdav
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-webdav
+ 3.8.4.GA-redhat-10
+
+
+ org.modeshape
+ modeshape-webdav
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-webdav-war
+ 3.8.4.GA-redhat-10
+ sources
+
+
+ org.modeshape
+ modeshape-webdav-war
+ 3.8.4.GA-redhat-10
+ test-sources
+
+
+ org.modeshape
+ modeshape-webdav-war
+ 3.8.4.GA-redhat-10
+ tests
+
+
+ org.modeshape
+ modeshape-webdav-war
+ 3.8.4.GA-redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-webdav-war
+ 3.8.4.GA-redhat-10
+ war
+
+
+ org.jboss.teiid.connectors
+ connector-accumulo
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ connector-accumulo
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ connector-accumulo
+ 8.12.5.redhat-8
+ lib
+
+
+ org.jboss.teiid.connectors
+ connector-accumulo
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ connector-accumulo
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ connector-accumulo
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ connector-accumulo
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ connector-accumulo
+ 8.12.5.redhat-8
+ rar
+
+
+ org.jboss.teiid.connectors
+ connector-cassandra
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ connector-cassandra
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ connector-cassandra
+ 8.12.5.redhat-8
+ lib
+
+
+ org.jboss.teiid.connectors
+ connector-cassandra
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ connector-cassandra
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ connector-cassandra
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ connector-cassandra
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ connector-cassandra
+ 8.12.5.redhat-8
+ rar
+
+
+ org.jboss.teiid.connectors
+ connector-file
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ connector-file
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ connector-file
+ 8.12.5.redhat-8
+ lib
+
+
+ org.jboss.teiid.connectors
+ connector-file
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ connector-file
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ connector-file
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ connector-file
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ connector-file
+ 8.12.5.redhat-8
+ rar
+
+
+ org.jboss.teiid.connectors
+ connector-google
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ connector-google
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ connector-google
+ 8.12.5.redhat-8
+ lib
+
+
+ org.jboss.teiid.connectors
+ connector-google
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ connector-google
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ connector-google
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ connector-google
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ connector-google
+ 8.12.5.redhat-8
+ rar
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan-dsl
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan-dsl
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan-dsl
+ 8.12.5.redhat-8
+ lib
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan-dsl
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan-dsl
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan-dsl
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan-dsl
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan-dsl
+ 8.12.5.redhat-8
+ rar
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan.6
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan.6
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan.6
+ 8.12.5.redhat-8
+ lib
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan.6
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan.6
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan.6
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan.6
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ connector-infinispan.6
+ 8.12.5.redhat-8
+ rar
+
+
+ org.jboss.teiid.connectors
+ connector-ldap
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ connector-ldap
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ connector-ldap
+ 8.12.5.redhat-8
+ lib
+
+
+ org.jboss.teiid.connectors
+ connector-ldap
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ connector-ldap
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ connector-ldap
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ connector-ldap
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ connector-ldap
+ 8.12.5.redhat-8
+ rar
+
+
+ org.jboss.teiid.connectors
+ connector-mongodb
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ connector-mongodb
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ connector-mongodb
+ 8.12.5.redhat-8
+ lib
+
+
+ org.jboss.teiid.connectors
+ connector-mongodb
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ connector-mongodb
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ connector-mongodb
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ connector-mongodb
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ connector-mongodb
+ 8.12.5.redhat-8
+ rar
+
+
+ org.jboss.teiid.connectors
+ connector-salesforce-34
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ connector-salesforce-34
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ connector-salesforce-34
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ connector-salesforce-34
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ connector-salesforce
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ connector-salesforce
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ connector-salesforce
+ 8.12.5.redhat-8
+ lib
+
+
+ org.jboss.teiid.connectors
+ connector-salesforce
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ connector-salesforce
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ connector-salesforce
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ connector-salesforce
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ connector-salesforce
+ 8.12.5.redhat-8
+ rar
+
+
+ org.jboss.teiid.connectors
+ connector-simpledb
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ connector-simpledb
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ connector-simpledb
+ 8.12.5.redhat-8
+ lib
+
+
+ org.jboss.teiid.connectors
+ connector-simpledb
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ connector-simpledb
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ connector-simpledb
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ connector-simpledb
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ connector-simpledb
+ 8.12.5.redhat-8
+ rar
+
+
+ org.jboss.teiid.connectors
+ connector-solr
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ connector-solr
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ connector-solr
+ 8.12.5.redhat-8
+ lib
+
+
+ org.jboss.teiid.connectors
+ connector-solr
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ connector-solr
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ connector-solr
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ connector-solr
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ connector-solr
+ 8.12.5.redhat-8
+ rar
+
+
+ org.jboss.teiid.connectors
+ connector-ws
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ connector-ws
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ connector-ws
+ 8.12.5.redhat-8
+ lib
+
+
+ org.jboss.teiid.connectors
+ connector-ws
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ connector-ws
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ connector-ws
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ connector-ws
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ connector-ws
+ 8.12.5.redhat-8
+ rar
+
+
+ org.jboss.teiid
+ connectors
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ connectors
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ google-api
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ google-api
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ google-api
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ google-api
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ mongodb-api
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ mongodb-api
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ mongodb-api
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ mongodb-api
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ sandbox
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ sandbox
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ simpledb-api
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ simpledb-api
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ simpledb-api
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ simpledb-api
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid
+ 8.12.5.redhat-8
+ zip
+ adminshell-dist
+
+
+ org.jboss.teiid
+ teiid
+ 8.12.5.redhat-8
+ console
+
+
+ org.jboss.teiid
+ teiid
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid
+ teiid
+ 8.12.5.redhat-8
+ zip
+ jboss-dist
+
+
+ org.jboss.teiid
+ teiid
+ 8.12.5.redhat-8
+ jdbc-jdk14
+
+
+ org.jboss.teiid
+ teiid
+ 8.12.5.redhat-8
+ jdbc-jdk15
+
+
+ org.jboss.teiid
+ teiid
+ 8.12.5.redhat-8
+ xml
+ karaf-features
+
+
+ org.jboss.teiid
+ teiid
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid
+ 8.12.5.redhat-8
+ zip
+ src
+
+
+ org.jboss.teiid
+ teiid
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-admin
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-admin
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-admin
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-admin
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-adminshell
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-adminshell
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-adminshell
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-adminshell
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-client
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-client
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-client
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-client
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-client-jdk15
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-client-jdk15
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-client-jdk15
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-client-jdk15
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-common-core
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-common-core
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-common-core
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-common-core
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-eclipselink-platform
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-eclipselink-platform
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-eclipselink-platform
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-eclipselink-platform
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-engine
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-engine
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-engine
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-engine
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-hibernate-dialect
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-hibernate-dialect
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-hibernate-dialect
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-hibernate-dialect
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-jboss-admin
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-jboss-admin
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-jboss-admin
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-jboss-admin
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-jboss-integration
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-jboss-integration
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-jboss-integration
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-jboss-integration
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-jboss-security
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-jboss-security
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-jboss-security
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-jboss-security
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-metadata
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-metadata
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-metadata
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-metadata
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-odata
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-odata
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-odata
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-odata
+ 8.12.5.redhat-8
+ war
+
+
+ org.jboss.teiid
+ teiid-olingo
+ 8.12.5.redhat-8
+ zip
+ dependencies
+
+
+ org.jboss.teiid
+ teiid-olingo
+ 8.12.5.redhat-8
+ war
+ odata4
+
+
+ org.jboss.teiid
+ teiid-olingo
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-olingo
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-olingo
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-olingo
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-olingo
+ 8.12.5.redhat-8
+ war
+
+
+ org.jboss.teiid
+ teiid-olingo-common
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-olingo-common
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-olingo-common
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-olingo-common
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-olingo-patches
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-olingo-patches
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-olingo-patches
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-parent
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-parent
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-runtime
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid
+ teiid-runtime
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-runtime
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ teiid-runtime
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ teiid-test-integration
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ teiid-test-integration
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ test-integration-common
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ test-integration-common
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ test-integration-common
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.teiid-test-integration
+ test-integration-db
+ 8.12.5.redhat-8
+ zip
+ kit
+
+
+ org.jboss.teiid.teiid-test-integration
+ test-integration-db
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.teiid-test-integration
+ test-integration-db
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.teiid-test-integration
+ test-integration-db
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.teiid-test-integration
+ test-integration-db
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid
+ test-integration-perf
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid
+ test-integration-perf
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid
+ test-integration-perf
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-accumulo
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-accumulo
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-accumulo
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-accumulo
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-accumulo
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-accumulo
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-cassandra
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-cassandra
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-cassandra
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-cassandra
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-cassandra
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-cassandra
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-excel
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-excel
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-excel
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-excel
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-excel
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-excel
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-file
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-file
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-file
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-file
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-file
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-file
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-google
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-google
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-google
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-google
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-google
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-google
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-hbase
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-hbase
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-hbase
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-hbase
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-hbase
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-hbase
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-hive
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-hive
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-hive
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-hive
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-hive
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-hive
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-infinispan-cache
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-infinispan-cache
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-infinispan-cache
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-infinispan-cache
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-infinispan-cache
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-infinispan-cache
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-infinispan-dsl
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-infinispan-dsl
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-infinispan-dsl
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-infinispan-dsl
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-infinispan-dsl
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-infinispan-dsl
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-jdbc
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-jdbc
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-jdbc
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-jdbc
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-jdbc
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-jdbc
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-jpa
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-jpa
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-jpa
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-jpa
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-jpa
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-jpa
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-ldap
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-ldap
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-ldap
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-ldap
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-ldap
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-ldap
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors.sandbox
+ translator-logger
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors.sandbox
+ translator-logger
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors.sandbox
+ translator-logger
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors.sandbox
+ translator-logger
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-loopback
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-loopback
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-loopback
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-loopback
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-loopback
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-loopback
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-mongodb
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-mongodb
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-mongodb
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-mongodb
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-mongodb
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-mongodb
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-odata
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-odata
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-odata
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-odata
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-odata
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-odata
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-odata4
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-odata4
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-odata4
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-odata4
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-odata4
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-odata4
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-olap
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-olap
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-olap
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-olap
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-olap
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-olap
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-prestodb
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-prestodb
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-prestodb
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-prestodb
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-prestodb
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-prestodb
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-salesforce-34
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-salesforce-34
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-salesforce-34
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-salesforce-34
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-salesforce-34
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-salesforce
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-salesforce
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-salesforce
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-salesforce
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-salesforce
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-salesforce
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-simpledb
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-simpledb
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-simpledb
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-simpledb
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-simpledb
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-simpledb
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-solr
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-solr
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-solr
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-solr
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-solr
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-solr
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors
+ translator-ws
+ 8.12.5.redhat-8
+ zip
+ embedded-dist
+
+
+ org.jboss.teiid.connectors
+ translator-ws
+ 8.12.5.redhat-8
+ zip
+ jboss-as7-dist
+
+
+ org.jboss.teiid.connectors
+ translator-ws
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors
+ translator-ws
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors
+ translator-ws
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors
+ translator-ws
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.connectors.sandbox
+ translator-yahoo
+ 8.12.5.redhat-8
+ sources
+
+
+ org.jboss.teiid.connectors.sandbox
+ translator-yahoo
+ 8.12.5.redhat-8
+ tests
+
+
+ org.jboss.teiid.connectors.sandbox
+ translator-yahoo
+ 8.12.5.redhat-8
+
+
+ org.jboss.teiid.connectors.sandbox
+ translator-yahoo
+ 8.12.5.redhat-8
+ pom
+
+
+ org.jboss.teiid.teiid-dashboard
+ teiid-dashboard-builder
+ 3.1.0.redhat-10
+ zip
+ dist
+
+
+ org.jboss.teiid.teiid-dashboard
+ teiid-dashboard-builder
+ 3.1.0.redhat-10
+ pom
+
+
+ org.jboss.teiid.teiid-dashboard
+ teiid-dashboard-modules
+ 3.1.0.redhat-10
+ pom
+
+
+ org.jboss.teiid.teiid-dashboard
+ teiid-dashboard-parent
+ 3.1.0.redhat-10
+ pom
+
+
+ org.jboss.teiid.teiid-dashboard
+ teiid-dashboard-showcase
+ 3.1.0.redhat-10
+ classes
+
+
+ org.jboss.teiid.teiid-dashboard
+ teiid-dashboard-showcase
+ 3.1.0.redhat-10
+ sources
+
+
+ org.jboss.teiid.teiid-dashboard
+ teiid-dashboard-showcase
+ 3.1.0.redhat-10
+ pom
+
+
+ org.jboss.teiid.teiid-dashboard
+ teiid-dashboard-showcase
+ 3.1.0.redhat-10
+ war
+
+
+ org.jboss.teiid.web-console
+ console-extensions
+ 2.5.6.Final-redhat-63-10
+ sources
+
+
+ org.jboss.teiid.web-console
+ console-extensions
+ 2.5.6.Final-redhat-63-10
+
+
+ org.jboss.teiid.web-console
+ console-extensions
+ 2.5.6.Final-redhat-63-10
+ pom
+
+
+ org.jboss.teiid.web-console
+ teiid-console
+ 2.5.6.Final-redhat-63-10
+ resources
+
+
+ org.jboss.teiid.web-console
+ teiid-console
+ 2.5.6.Final-redhat-63-10
+ sources
+
+
+ org.jboss.teiid.web-console
+ teiid-console
+ 2.5.6.Final-redhat-63-10
+ pom
+
+
+ org.jboss.teiid.web-console
+ teiid-console
+ 2.5.6.Final-redhat-63-10
+ war
+
+
+ org.jboss.teiid.web-console
+ teiid-console-dist
+ 2.5.6.Final-redhat-63-10
+ zip
+ jboss-as7
+
+
+ org.jboss.teiid.web-console
+ teiid-console-dist
+ 2.5.6.Final-redhat-63-10
+
+
+ org.jboss.teiid.web-console
+ teiid-console-dist
+ 2.5.6.Final-redhat-63-10
+ pom
+
+
+ org.jboss.teiid.web-console
+ teiid-console-parent
+ 2.5.6.Final-redhat-63-10
+ pom
+
+
+ org.jboss.teiid.extensions
+ build-extensions
+ 1.2.0.redhat-10
+ zip
+ dist
+
+
+ org.jboss.teiid.extensions
+ build-extensions
+ 1.2.0.redhat-10
+ sources
+
+
+ org.jboss.teiid.extensions
+ build-extensions
+ 1.2.0.redhat-10
+
+
+ org.jboss.teiid.extensions
+ build-extensions
+ 1.2.0.redhat-10
+ pom
+
+
+ org.jboss.teiid.extensions
+ database-logging-appender
+ 1.2.0.redhat-10
+ sources
+
+
+ org.jboss.teiid.extensions
+ database-logging-appender
+ 1.2.0.redhat-10
+
+
+ org.jboss.teiid.extensions
+ database-logging-appender
+ 1.2.0.redhat-10
+ pom
+
+
+ org.jboss.teiid.extensions
+ database-service
+ 1.2.0.redhat-10
+ sources
+
+
+ org.jboss.teiid.extensions
+ database-service
+ 1.2.0.redhat-10
+
+
+ org.jboss.teiid.extensions
+ database-service
+ 1.2.0.redhat-10
+ pom
+
+
+ org.jboss.teiid
+ extensions
+ 1.2.0.redhat-10
+ pom
+
+
+ org.modeshape
+ modeshape-rhq
+ 3.8.1.GA-redhat-63-10
+ pom
+
+
+ org.modeshape
+ modeshape-rhq-parent
+ 3.8.1.GA-redhat-63-10
+ pom
+
+
+ org.modeshape
+ modeshape-rhq-plugin
+ 3.8.1.GA-redhat-63-10
+ sources
+
+
+ org.modeshape
+ modeshape-rhq-plugin
+ 3.8.1.GA-redhat-63-10
+ tests
+
+
+ org.modeshape
+ modeshape-rhq-plugin
+ 3.8.1.GA-redhat-63-10
+
+
+ org.modeshape
+ modeshape-rhq-plugin
+ 3.8.1.GA-redhat-63-10
+ pom
+
+
+ org.jboss.teiid.rhq
+ teiid-rhq
+ 2.2.0.redhat-63-10
+ pom
+
+
+ org.jboss.teiid.rhq
+ teiid-rhq-plugin
+ 2.2.0.redhat-63-10
+ sources
+
+
+ org.jboss.teiid.rhq
+ teiid-rhq-plugin
+ 2.2.0.redhat-63-10
+
+
+ org.jboss.teiid.rhq
+ teiid-rhq-plugin
+ 2.2.0.redhat-63-10
+ pom
+
+
+ org.jboss.hal
+ release-stream
+ 2.5.13.Final-redhat-dv63-4
+ zip
+ overlay
+
+
+ org.jboss.hal
+ release-stream
+ 2.5.13.Final-redhat-dv63-4
+ resources
+
+
+ org.jboss.hal
+ release-stream
+ 2.5.13.Final-redhat-dv63-4
+ sources
+
+
+ org.jboss.hal
+ release-stream
+ 2.5.13.Final-redhat-dv63-4
+ pom
+
+
+ org.jboss.hal
+ release-stream
+ 2.5.13.Final-redhat-dv63-4
+ war
+
+
+ org.jboss.teiid
+ arche-types
+ 8.12.1.redhat-63-9
+ tests
+
+
+ org.jboss.teiid
+ arche-types
+ 8.12.1.redhat-63-9
+ pom
+
+
+ org.jboss.teiid.arche-types
+ connector-archetype
+ 8.12.1.redhat-63-9
+ sources
+
+
+ org.jboss.teiid.arche-types
+ connector-archetype
+ 8.12.1.redhat-63-9
+ tests
+
+
+ org.jboss.teiid.arche-types
+ connector-archetype
+ 8.12.1.redhat-63-9
+
+
+ org.jboss.teiid.arche-types
+ connector-archetype
+ 8.12.1.redhat-63-9
+ pom
+
+
+ org.jboss.teiid
+ teiid-tools
+ 8.12.1.redhat-63-9
+ tests
+
+
+ org.jboss.teiid
+ teiid-tools
+ 8.12.1.redhat-63-9
+ pom
+
+
+ org.jboss.teiid.arche-types
+ translator-archetype
+ 8.12.1.redhat-63-9
+ sources
+
+
+ org.jboss.teiid.arche-types
+ translator-archetype
+ 8.12.1.redhat-63-9
+ tests
+
+
+ org.jboss.teiid.arche-types
+ translator-archetype
+ 8.12.1.redhat-63-9
+
+
+ org.jboss.teiid.arche-types
+ translator-archetype
+ 8.12.1.redhat-63-9
+ pom
+
+
+ org.jboss.teiid.modeshape
+ build
+ 0.0.1.redhat-8
+ zip
+ jboss-dist
+
+
+ org.jboss.teiid.modeshape
+ build
+ 0.0.1.redhat-8
+ pom
+
+
+ org.jboss.teiid.modeshape
+ teiid-modeshape-parent
+ 0.0.1.redhat-8
+ pom
+
+
+ org.jboss.teiid.modeshape
+ teiid-modeshape-sequencer-ddl
+ 0.0.1.redhat-8
+ sources
+
+
+ org.jboss.teiid.modeshape
+ teiid-modeshape-sequencer-ddl
+ 0.0.1.redhat-8
+
+
+ org.jboss.teiid.modeshape
+ teiid-modeshape-sequencer-ddl
+ 0.0.1.redhat-8
+ pom
+
+
+ org.jboss.teiid.modeshape
+ teiid-modeshape-sequencer-vdb
+ 0.0.1.redhat-8
+ sources
+
+
+ org.jboss.teiid.modeshape
+ teiid-modeshape-sequencer-vdb
+ 0.0.1.redhat-8
+
+
+ org.jboss.teiid.modeshape
+ teiid-modeshape-sequencer-vdb
+ 0.0.1.redhat-8
+ pom
+
+
+ org.jboss.teiid.modeshape
+ teiid-modeshape-sequencers
+ 0.0.1.redhat-8
+ pom
+
+
+ org.jboss.teiid.modeshape
+ teiid-modeshape-utils
+ 0.0.1.redhat-8
+
+
+ org.jboss.teiid.modeshape
+ teiid-modeshape-utils
+ 0.0.1.redhat-8
+ pom
+
+
+ org.komodo
+ komodo
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-core
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-core
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo
+ komodo-core
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-core
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-core
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-core-tests
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo
+ komodo-core-tests
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-core-tests
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-core-tests
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-importer
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-importer
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-importer
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-importer
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-modeshape
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-modeshape
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-modeshape
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-modeshape
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-modeshape-sequencer-teiid-sql
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-modeshape-sequencer-teiid-sql
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo
+ komodo-modeshape-sequencer-teiid-sql
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-modeshape-sequencer-teiid-sql
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-modeshape-sequencer-teiid-sql
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-modeshape-sequencer-teiid-sql-tests
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo
+ komodo-modeshape-sequencer-teiid-sql-tests
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-modeshape-sequencer-teiid-sql-tests
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-modeshape-sequencer-teiid-sql-tests
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-modeshape-vdb
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-modeshape-vdb
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo
+ komodo-modeshape-vdb
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-modeshape-vdb
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-modeshape-vdb
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-parent
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-parent
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-plugin-service
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-plugin-service
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo
+ komodo-plugin-service
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-plugin-service
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-plugin-service
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo.plugins
+ komodo-plugin-teiid-framework
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo.plugins
+ komodo-plugin-teiid-framework
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo.plugins
+ komodo-plugin-teiid-framework
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo.plugins
+ komodo-plugin-teiid-framework
+ 0.0.4.redhat-8
+
+
+ org.komodo.plugins
+ komodo-plugin-teiid-framework
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-plugins
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-plugins
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-relational
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-relational
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo
+ komodo-relational
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-relational
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-relational
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-relational-commands
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-relational-commands
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo
+ komodo-relational-commands
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-relational-commands
+ 0.0.4.redhat-8
+ with-dependencies
+
+
+ org.komodo
+ komodo-relational-commands
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-relational-commands
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-rest
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-rest
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo
+ komodo-rest
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-rest
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-rest
+ 0.0.4.redhat-8
+ war
+
+
+ org.komodo
+ komodo-server
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-server
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-shell
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-shell
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo
+ komodo-shell
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-shell
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-shell
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-shell-api
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-shell-api
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-shell-api
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-shell-api
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-spi
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-spi
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-spi
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-spi
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-test-utils
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo
+ komodo-test-utils
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-test-utils
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-test-utils
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-ui
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-ui
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-ui
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-ui
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-utils
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-utils
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo
+ komodo-utils
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-utils
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-utils
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ komodo-utils-modeshape-logger
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ komodo-utils-modeshape-logger
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ komodo-utils-modeshape-logger
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ komodo-utils-modeshape-logger
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo.plugins.teiid
+ teiid-8.12
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo.plugins.teiid
+ teiid-8.12
+ 0.0.4.redhat-8
+ test-sources
+
+
+ org.komodo.plugins.teiid
+ teiid-8.12
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo.plugins.teiid
+ teiid-8.12
+ 0.0.4.redhat-8
+
+
+ org.komodo.plugins.teiid
+ teiid-8.12
+ 0.0.4.redhat-8
+ pom
+
+
+ org.komodo
+ vdbbuilder.build
+ 0.0.4.redhat-8
+ sources
+
+
+ org.komodo
+ vdbbuilder.build
+ 0.0.4.redhat-8
+ tests
+
+
+ org.komodo
+ vdbbuilder.build
+ 0.0.4.redhat-8
+ zip
+ vdbbuilder-console
+
+
+ org.komodo
+ vdbbuilder.build
+ 0.0.4.redhat-8
+
+
+ org.komodo
+ vdbbuilder.build
+ 0.0.4.redhat-8
+ pom
+
+
+ org.jboss.as
+ console-spi
+ 2.5.13.Final-redhat-1
+
+
+ org.jboss.as
+ diagnostics
+ 2.5.13.Final-redhat-1
+
+
+ org.jboss.as
+ jboss-as-console-bom
+ 2.5.13.Final-redhat-1
+
+
+ org.jboss.as
+ jboss-as-console-build
+ 2.5.13.Final-redhat-1
+ pom
+
+
+ org.jboss.as
+ jboss-as-console-core
+ 2.5.13.Final-redhat-1
+
+
+ org.jboss.as
+ jboss-as-console-dialogs
+ 2.5.13.Final-redhat-1
+
+
+ org.jboss.as
+ jboss-as-console-dmr
+ 2.5.13.Final-redhat-1
+
+
+ org.jboss.as
+ jboss-as-console-flow
+ 2.5.13.Final-redhat-1
+
+
+ org.jboss.as
+ jboss-as-console-flow-parent
+ 2.5.13.Final-redhat-1
+
+
+ org.jboss.as
+ jboss-as-console-parent
+ 2.5.13.Final-redhat-1
+
+
+ org.jboss.as
+ jboss-as-console-resources
+ 2.5.13.Final-redhat-1
+
+
+ org.jboss.as
+ jboss-as-console-extension
+ 2.5.13.Final-redhat-1
+ pom
+
+
+ org.jboss.as
+ console-spi
+ 2.5.13.Final-redhat-1
+ sources
+
+
+ org.jboss.as
+ jboss-as-console-core
+ 2.5.13.Final-redhat-1
+ sources
+
+
+ org.jboss.as
+ diagnostics
+ 2.5.13.Final-redhat-1
+ sources
+
+
+ org.jboss.as
+ ace-gwt
+ 2.5.13.Final-redhat-1
+
+
+ org.jboss.as
+ ace-gwt
+ 2.5.13.Final-redhat-1
+ sources
+
+
+ org.jboss.as
+ jboss-as-console-resources
+ 2.5.13.Final-redhat-1
+ war
+
+
+ org.jboss.as
+ jboss-as-console-dialogs
+ 2.5.13.Final-redhat-1
+ war
+
+
+ org.apache.cxf
+ cxf-api
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-bindings-coloc
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-bindings-object
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-bindings-soap
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-bindings-xml
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-core
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-databinding-aegis
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-databinding-jaxb
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-frontend-jaxws
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-frontend-simple
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-management
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-transports-http
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-transports-jms
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-transports-local
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-ws-addr
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-ws-mex
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-ws-policy
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-ws-rm
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-ws-security
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-tools-common
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-tools-java2ws
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-tools-validator
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-tools-wsdlto-core
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-tools-wsdlto-databinding-jaxb
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-tools-wsdlto-frontend-jaxws
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf.services.sts
+ cxf-services-sts-core
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf.services.ws-discovery
+ cxf-services-ws-discovery-api
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-rt-frontend-jaxrs
+ 2.7.18.SP1-redhat-1
+
+
+ org.apache.cxf
+ cxf-bundle
+ 2.7.18.SP1-redhat-1
+
+
+ org.hibernate
+ hibernate-search
+ 4.6.0.Final-redhat-2
+
+
+ org.hibernate
+ hibernate-search-analyzers
+ 4.6.0.Final-redhat-2
+
+
+ org.hibernate
+ hibernate-search-infinispan
+ 4.6.0.Final-redhat-2
+
+
+ org.hibernate
+ hibernate-search-modules
+ 4.6.0.Final-redhat-2
+
+
+ org.hibernate
+ hibernate-search-modules
+ 4.6.0.Final-redhat-2
+ zip
+ jbossas-72-dist
+
+
+ org.jboss.resteasy
+ jaxrs-api
+ 2.3.13.Final-redhat-1
+
+
+ org.picketbox
+ picketbox-bare
+ 4.1.2.Final-redhat-1
+
+
+ org.jboss.bom.eap
+ jboss-javaee-6.0-with-logging
+ 6.4.9.GA
+ pom
+
+
+ org.jboss.bom.eap
+ jboss-javaee-6.0-with-hibernate
+ 6.4.9.GA
+ pom
+
+
+ org.apache.tika
+ tika
+ 1.3.redhat-1
+ xml
+ site
+
+
+ org.apache.tika
+ tika
+ 1.3.redhat-1
+ pom
+
+
+ org.apache.tika
+ tika-app
+ 1.3.redhat-1
+
+
+ org.apache.tika
+ tika-app
+ 1.3.redhat-1
+ pom
+
+
+ org.apache.tika
+ tika-bundle
+ 1.3.redhat-1
+
+
+ org.apache.tika
+ tika-bundle
+ 1.3.redhat-1
+ pom
+
+
+ org.apache.tika
+ tika-core
+ 1.3.redhat-1
+
+
+ org.apache.tika
+ tika-core
+ 1.3.redhat-1
+ pom
+
+
+ org.apache.tika
+ tika-parent
+ 1.3.redhat-1
+ pom
+
+
+ org.apache.tika
+ tika-parsers
+ 1.3.redhat-1
+
+
+ org.apache.tika
+ tika-parsers
+ 1.3.redhat-1
+ pom
+
+
+ org.apache.tika
+ tika-server
+ 1.3.redhat-1
+
+
+ org.apache.tika
+ tika-server
+ 1.3.redhat-1
+ pom
+
+
+ org.apache.tika
+ tika-xmp
+ 1.3.redhat-1
+
+
+ org.apache.tika
+ tika-xmp
+ 1.3.redhat-1
+ pom
+
+
+ org.jboss.oreva
+ common
+ 0.8.10
+ sources
+
+
+ org.jboss.oreva
+ common
+ 0.8.10
+ tests
+
+
+ org.jboss.oreva
+ common
+ 0.8.10
+
+
+ org.jboss.oreva
+ common
+ 0.8.10
+ pom
+
+
+ org.jboss.oreva
+ odata-core
+ 0.8.10
+ sources
+
+
+ org.jboss.oreva
+ odata-core
+ 0.8.10
+ tests
+
+
+ org.jboss.oreva
+ odata-core
+ 0.8.10
+
+
+ org.jboss.oreva
+ odata-core
+ 0.8.10
+ pom
+
+
+ org.jboss.oreva
+ parent
+ 0.8.10
+ tests
+
+
+ org.jboss.oreva
+ parent
+ 0.8.10
+ pom
+
+
+ org.jboss.oreva
+ test-integration
+ 0.8.10
+ sources
+
+
+ org.jboss.oreva
+ test-integration
+ 0.8.10
+ tests
+
+
+ org.jboss.oreva
+ test-integration
+ 0.8.10
+
+
+ org.jboss.oreva
+ test-integration
+ 0.8.10
+ pom
+
+
+ org.jboss.jbossts.jta
+ narayana-jta
+ 4.17.34.Final-redhat-1
+
+
+ jline
+ jline
+ 2.9.redhat-0
+
+
+ org.apache.lucene
+ lucene-core
+ 3.6.2.redhat-8
+
+
+ org.jboss.as
+ jboss-as-appclient
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-arquillian-common
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-arquillian-container-embedded
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-arquillian-container-managed
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-arquillian-container-managed-clustering
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-arquillian-container-remote
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-arquillian-common-domain
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-arquillian-container-domain-managed
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-arquillian-container-domain-remote
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-arquillian-processor-jsfunit
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-arquillian-protocol-jmx
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-arquillian-testenricher-msc
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-build
+ 7.5.9.Final-redhat-2
+ pom
+
+
+ org.jboss.as
+ jboss-as-build-config
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-clustering
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-clustering-api
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-clustering-common
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-clustering-ejb3-infinispan
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-clustering-impl
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-clustering-infinispan
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-clustering-jgroups
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-clustering-registry
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-clustering-service
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-clustering-singleton
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-clustering-web-infinispan
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-clustering-web-spi
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-cmp
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-configadmin
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-config-assembly
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-connector
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-controller
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-controller-client
+ 7.5.9.Final-redhat-2
+
+
+ org.wildfly
+ wildfly-core-security-api
+ 7.5.9.Final-redhat-2
+
+
+ org.wildfly
+ wildfly-core-security
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-deployment-repository
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-deployment-scanner
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-domain-http-error-context
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-domain-http-interface
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-domain-management
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-cli
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-cli
+ 7.5.9.Final-redhat-2
+ client
+
+
+ org.jboss.as
+ jboss-as-client-all
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-core-model-test
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-core-model-test-framework
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-core-model-test-controller-optional
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-core-model-test-controller-7.1.2
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-core-model-test-controller-7.2.0
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-ee
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-ee-deployment
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-ejb3
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-ejb-client-bom
+ 7.5.9.Final-redhat-2
+ pom
+
+
+ org.jboss.as
+ jboss-as-embedded
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-host-controller
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-jacorb
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-jaxr
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-jaxrs
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-jdr
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-jmx
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-jms-client-bom
+ 7.5.9.Final-redhat-2
+ pom
+
+
+ org.jboss.as
+ jboss-as-jsr77
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-logging
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-managed-beans
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-management-client-content
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-mail
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-messaging
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-modcluster
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-model-test
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-naming
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-network
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-pojo
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-osgi-configadmin
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-osgi-service
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-osgi-http
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-osgi-jmx
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-osgi-jpa
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-osgi-jta
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-osgi-launcher
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-osgi-naming
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-osgi-web
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-platform-mbean
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-process-controller
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-protocol
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-remoting
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-sar
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-security
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-security-api
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-server
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-sos
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-subsystem-test
+ 7.5.9.Final-redhat-2
+ pom
+
+
+ org.jboss.as
+ jboss-as-subsystem-test-controller-7.1.2
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-subsystem-test-controller-7.2.0
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-subsystem-test-framework
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-system-jmx
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-threads
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-transactions
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-version
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-web
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-webservices-server-integration
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-weld
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-xts
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-testsuite-protocol-base
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-testsuite-protocol-modules
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-testsuite-shared
+ 7.5.9.Final-redhat-2
+
+
+ org.wildfly
+ wildfly-patching
+ 7.5.9.Final-redhat-2
+
+
+ org.wildfly
+ wildfly-picketlink
+ 7.5.9.Final-redhat-2
+
+
+ antlr
+ antlr
+ 2.7.7.redhat-4
+
+
+ asm
+ asm
+ 3.3.1.redhat-9
+
+
+ ch.qos.cal10n
+ cal10n-api
+ 0.7.7.redhat-1
+
+
+ com.h2database
+ h2
+ 1.3.168.redhat-5
+
+
+ com.github.relaxng
+ relaxngDatatype
+ 2011.1.0.redhat-9
+
+
+ com.google.guava
+ guava
+ 13.0.1.redhat-2
+
+
+ com.sun
+ tools
+ 1.6
+
+
+ com.sun.codemodel
+ codemodel
+ 2.6.0.redhat-3
+
+
+ com.sun.faces
+ jsf-impl
+ 2.1.28.SP10-redhat-1
+
+
+ com.sun.istack
+ istack-commons-runtime
+ 2.6.1.redhat-3
+
+
+ com.sun.istack
+ istack-commons-tools
+ 2.6.1.redhat-3
+
+
+ com.sun.xml.bind
+ jaxb-impl
+ 2.2.5.redhat-9
+
+
+ com.sun.xml.bind
+ jaxb-xjc
+ 2.2.5.redhat-9
+
+
+ com.sun.xml.messaging.saaj
+ saaj-impl
+ 1.3.16.SP1-redhat-2
+
+
+ com.sun.xml.txw2
+ txw2
+ 20110809.0.0.redhat-5
+
+
+ com.sun.xsom
+ xsom
+ 20110809.0.0.redhat-4
+
+
+ commons-beanutils
+ commons-beanutils
+ 1.8.3.redhat-6
+
+
+ commons-cli
+ commons-cli
+ 1.2.0.redhat-8
+
+
+ commons-configuration
+ commons-configuration
+ 1.6.0.redhat-4
+
+
+ commons-collections
+ commons-collections
+ 3.2.1.redhat-7
+
+
+ commons-io
+ commons-io
+ 2.1.0.redhat-4
+
+
+ commons-lang
+ commons-lang
+ 2.6.0.redhat-4
+
+
+ commons-pool
+ commons-pool
+ 1.6.0.redhat-7
+
+
+ dom4j
+ dom4j
+ 1.6.1.redhat-6
+
+
+ gnu.getopt
+ java-getopt
+ 1.0.13.redhat-4
+
+
+ httpunit
+ httpunit
+ 1.7
+
+
+ org.jacorb
+ jacorb
+ 2.3.2.redhat-6
+
+
+ org.javassist
+ javassist
+ 3.18.1.GA-redhat-1
+
+
+ javax.activation
+ activation
+ 1.1.1.redhat-4
+
+
+ javax.faces
+ jsf-api
+ 1.2.15.b01-redhat-12
+
+
+ javax.faces
+ jsf-impl
+ 1.2.15.b01-redhat-12
+
+
+ javax.inject
+ javax.inject
+ 1.0.0.redhat-5
+
+
+ javax.jws
+ jsr181-api
+ 1.0.0.MR1-redhat-7
+
+
+ javax.mail
+ mail
+ 1.4.5.redhat-2
+
+
+ jboss.jaxbintros
+ jboss-jaxb-intros
+ 1.0.2.GA-redhat-6
+
+
+ javax.validation
+ validation-api
+ 1.0.0.GA-redhat-3
+
+
+ jaxen
+ jaxen
+ 1.1.3.redhat-4
+
+
+ org.jboss.aesh
+ aesh
+ 0.33.16.redhat-1
+
+
+ org.fusesource.jansi
+ jansi
+ 1.9.0.redhat-5
+
+
+ joda-time
+ joda-time
+ 1.6.2.redhat-5
+
+
+ log4j
+ log4j
+ 1.2.16
+
+
+ org.apache.avro
+ avro
+ 1.7.5.redhat-2
+
+
+ org.apache.velocity
+ velocity
+ 1.7.0.redhat-4
+
+
+ org.apache.ant
+ ant
+ 1.8.3
+
+
+ org.apache.cxf.xjcplugins
+ cxf-xjc-boolean
+ 2.6.2.redhat-1
+
+
+ org.apache.cxf.xjcplugins
+ cxf-xjc-dv
+ 2.6.2.redhat-1
+
+
+ org.apache.cxf.xjcplugins
+ cxf-xjc-ts
+ 2.6.2.redhat-1
+
+
+ org.opensaml
+ opensaml
+ 2.5.3.redhat-2
+
+
+ org.opensaml
+ openws
+ 1.4.4.redhat-2
+
+
+ org.opensaml
+ xmltooling
+ 1.3.4.redhat-3
+
+
+ org.apache.felix
+ org.apache.felix.configadmin
+ 1.2.8.redhat-4
+
+
+ org.apache.felix
+ org.apache.felix.log
+ 1.0.0.redhat-3
+
+
+ org.apache.httpcomponents
+ httpmime
+ 4.3.6.redhat-1
+
+
+ org.apache.james
+ apache-mime4j
+ 0.6.0.redhat-4
+
+
+ org.apache.juddi
+ juddi-client
+ 3.1.3.redhat-3
+
+
+ org.apache.juddi
+ uddi-ws
+ 3.1.3.redhat-3
+
+
+ org.apache.myfaces.core
+ myfaces-impl
+ 2.1.8.redhat-2
+
+
+ org.apache.neethi
+ neethi
+ 3.0.2.redhat-3
+
+
+ org.apache.santuario
+ xmlsec
+ 1.5.8.redhat-1
+
+
+ org.apache.solr
+ solr-analysis-extras
+ 3.6.2.redhat-8
+
+
+ org.apache.solr
+ solr-core
+ 3.6.2.redhat-8
+
+
+ org.apache.solr
+ solr-solrj
+ 3.6.2.redhat-8
+
+
+ org.apache.juddi.scout
+ scout
+ 1.2.6.redhat-3
+
+
+ org.apache.lucene
+ lucene-analyzers
+ 3.6.2.redhat-8
+
+
+ org.apache.lucene
+ lucene-phonetic
+ 3.6.2.redhat-8
+
+
+ org.apache.lucene
+ lucene-smartcn
+ 3.6.2.redhat-8
+
+
+ org.apache.lucene
+ lucene-stempel
+ 3.6.2.redhat-8
+
+
+ org.apache.lucene
+ lucene-facet
+ 3.6.2.redhat-8
+
+
+ org.apache.maven
+ maven-aether-provider
+ 3.2.1
+
+
+ org.apache.ws.xmlschema
+ xmlschema-core
+ 2.0.2.redhat-3
+
+
+ org.apache.ws.security
+ wss4j
+ 1.6.19.redhat-2
+
+
+ org.codehaus.jackson
+ jackson-core-asl
+ 1.9.9.redhat-4
+
+
+ org.codehaus.jackson
+ jackson-mapper-asl
+ 1.9.9.redhat-4
+
+
+ org.codehaus.jackson
+ jackson-jaxrs
+ 1.9.9.redhat-4
+
+
+ org.codehaus.jackson
+ jackson-xc
+ 1.9.9.redhat-4
+
+
+ org.codehaus.jettison
+ jettison
+ 1.3.1.redhat-4
+
+
+ org.codehaus.plexus
+ plexus-utils
+ 3.0.18
+
+
+ org.codehaus.woodstox
+ woodstox-core-asl
+ 4.2.0.redhat-4
+
+
+ org.codehaus.woodstox
+ stax2-api
+ 3.1.3.redhat-1
+
+
+ org.hibernate
+ hibernate-core
+ 4.2.23.Final-redhat-1
+
+
+ org.hibernate
+ hibernate-search-orm
+ 4.6.0.Final-redhat-2
+
+
+ org.hibernate
+ hibernate-infinispan
+ 4.2.23.Final-redhat-1
+
+
+ org.hibernate
+ hibernate-envers
+ 4.2.23.Final-redhat-1
+
+
+ org.hibernate.common
+ hibernate-commons-annotations
+ 4.0.2.Final-redhat-1
+
+
+ org.hibernate
+ hibernate-entitymanager
+ 4.2.23.Final-redhat-1
+
+
+ org.hibernate
+ hibernate-validator
+ 4.3.3.Final-redhat-1
+
+
+ org.hibernate.javax.persistence
+ hibernate-jpa-2.0-api
+ 1.0.1.Final-redhat-3
+
+
+ org.hornetq
+ hornetq-server
+ 2.3.25.SP11-redhat-1
+
+
+ org.hornetq
+ hornetq-commons
+ 2.3.25.SP11-redhat-1
+
+
+ org.hornetq
+ hornetq-journal
+ 2.3.25.SP11-redhat-1
+
+
+ org.hornetq
+ hornetq-core-client
+ 2.3.25.SP11-redhat-1
+
+
+ org.hornetq
+ hornetq-jms-server
+ 2.3.25.SP11-redhat-1
+
+
+ org.hornetq
+ hornetq-jms-client
+ 2.3.25.SP11-redhat-1
+
+
+ org.hornetq
+ hornetq-ra
+ 2.3.25.SP11-redhat-1
+
+
+ org.jboss.byteman
+ byteman
+ 2.1.4.1
+
+
+ org.jboss.byteman
+ byteman-submit
+ 2.1.4.1
+
+
+ org.jboss.byteman
+ byteman-install
+ 2.1.4.1
+
+
+ org.jboss.byteman
+ byteman-bmunit
+ 2.1.4.1
+
+
+ org.jboss
+ jandex
+ 1.2.2.Final-redhat-1
+
+
+ org.jboss
+ jboss-dmr
+ 1.2.2.Final-redhat-1
+
+
+ org.jboss.common
+ jboss-common-beans
+ 1.1.0.Final-redhat-2
+
+
+ org.jboss
+ jboss-common-core
+ 2.2.17.GA-redhat-3
+
+
+ org.jboss
+ jboss-iiop-client
+ 1.0.0.Final-redhat-3
+
+
+ org.jboss
+ jboss-remote-naming
+ 1.0.12.Final-redhat-1
+
+
+ org.jboss
+ staxmapper
+ 1.1.0.Final-redhat-3
+
+
+ org.jboss
+ jboss-vfs
+ 3.2.10.Final-redhat-1
+
+
+ org.jboss.arquillian.container
+ arquillian-container-osgi
+ 1.0.3.Final
+
+
+ org.jboss.arquillian.container
+ arquillian-container-spi
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.container
+ arquillian-container-test-api
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.container
+ arquillian-container-test-spi
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.container
+ arquillian-container-test-impl-base
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.core
+ arquillian-core-api
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.core
+ arquillian-core-impl-base
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.core
+ arquillian-core-spi
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.junit
+ arquillian-junit-core
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.testng
+ arquillian-testng-core
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.junit
+ arquillian-junit-container
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.testng
+ arquillian-testng-container
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.protocol
+ arquillian-protocol-jmx
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.protocol
+ arquillian-protocol-servlet
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.test
+ arquillian-test-spi
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.test
+ arquillian-test-impl-base
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.testenricher
+ arquillian-testenricher-cdi
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.testenricher
+ arquillian-testenricher-ejb
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.testenricher
+ arquillian-testenricher-initialcontext
+ 1.0.0.Final
+
+
+ org.jboss.arquillian.testenricher
+ arquillian-testenricher-osgi
+ 1.0.3.Final
+
+
+ org.jboss.arquillian.testenricher
+ arquillian-testenricher-resource
+ 1.0.0.Final
+
+
+ org.jboss.classfilewriter
+ jboss-classfilewriter
+ 1.0.3.Final-redhat-2
+
+
+ org.jboss.com.sun.httpserver
+ httpserver
+ 1.0.6.Final-redhat-1
+
+
+ org.jboss
+ jboss-ejb-client
+ 1.0.35.Final-redhat-1
+
+
+ org.jboss.ejb3
+ jboss-ejb3-ext-api
+ 2.1.0.redhat-1
+
+
+ org.jboss.genericjms
+ generic-jms-ra-jar
+ 1.0.7.Final-redhat-1
+
+
+ org.jboss.invocation
+ jboss-invocation
+ 1.1.2.Final-redhat-1
+
+
+ org.jboss
+ jboss-transaction-spi
+ 7.1.0.Final-redhat-1
+
+
+ org.jboss.ironjacamar
+ ironjacamar-core-api
+ 1.0.37.Final-redhat-1
+
+
+ org.jboss.ironjacamar
+ ironjacamar-core-impl
+ 1.0.37.Final-redhat-1
+
+
+ org.jboss.ironjacamar
+ ironjacamar-common-api
+ 1.0.37.Final-redhat-1
+
+
+ org.jboss.ironjacamar
+ ironjacamar-common-spi
+ 1.0.37.Final-redhat-1
+
+
+ org.jboss.ironjacamar
+ ironjacamar-common-impl
+ 1.0.37.Final-redhat-1
+
+
+ org.jboss.ironjacamar
+ ironjacamar-deployers-common
+ 1.0.37.Final-redhat-1
+
+
+ org.jboss.ironjacamar
+ ironjacamar-spec-api
+ 1.0.37.Final-redhat-1
+
+
+ org.jboss.ironjacamar
+ ironjacamar-jdbc
+ 1.0.37.Final-redhat-1
+
+
+ org.jboss.ironjacamar
+ ironjacamar-validator
+ 1.0.37.Final-redhat-1
+
+
+ org.jboss.as
+ jboss-as-jpa
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-jpa-spi
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-jpa-util
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-jpa-hibernate3
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-jpa-hibernate4
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-jsf
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.as
+ jboss-as-jsf-injection
+ 7.5.9.Final-redhat-2
+
+
+ org.jboss.jbossts.jts
+ jbossjts-jacorb
+ 4.17.34.Final-redhat-1
+
+
+ org.jboss.jbossts.jts
+ jbossjts-integration
+ 4.17.34.Final-redhat-1
+
+
+ org.jboss.jbossts.xts
+ jbossxts
+ 4.17.34.Final-redhat-1
+
+
+ org.jboss.jbossts.xts
+ jbossxts
+ 4.17.34.Final-redhat-1
+ api
+
+
+ org.jboss.jbossts
+ jbosstxbridge
+ 4.17.34.Final-redhat-1
+
+
+ org.jboss.jsfunit
+ jsfunit-arquillian
+ 2.0.0.Beta1
+
+
+ org.jboss.jsfunit
+ jboss-jsfunit-core
+ 2.0.0.Beta1
+
+
+ org.jboss.logging
+ jboss-logging
+ 3.1.4.GA-redhat-2
+
+
+ org.jboss.logging
+ jboss-logging-processor
+ 1.1.0.Final
+
+
+ org.jboss.logging
+ jul-to-slf4j-stub
+ 1.0.1.Final-redhat-2
+
+
+ org.jboss.logmanager
+ jboss-logmanager
+ 1.5.4.Final-redhat-1
+
+
+ org.jboss.logmanager
+ log4j-jboss-logmanager
+ 1.1.2.Final-redhat-1
+
+
+ org.jboss.marshalling
+ jboss-marshalling
+ 1.4.10.Final-redhat-1
+
+
+ org.jboss.marshalling
+ jboss-marshalling-river
+ 1.4.10.Final-redhat-1
+
+
+ org.jboss.msc
+ jboss-msc
+ 1.1.6.Final-redhat-1
+
+
+ org.jboss.modules
+ jboss-modules
+ 1.3.7.Final-redhat-1
+
+
+ io.netty
+ netty
+ 3.6.10.Final-redhat-1
+
+
+ org.jboss.osgi.deployment
+ jbosgi-deployment
+ 1.3.0.Final-redhat-2
+
+
+ org.jboss.osgi.framework
+ jbosgi-framework-core
+ 2.1.0.Final-redhat-2
+
+
+ org.jboss.osgi.logging
+ jboss-osgi-logging
+ 1.0.0.redhat-3
+
+
+ org.jboss.osgi.metadata
+ jbosgi-metadata
+ 2.2.0.Final-redhat-2
+
+
+ org.jboss.osgi.resolver
+ jbosgi-resolver-api
+ 3.0.1.Final-redhat-2
+
+
+ org.jboss.osgi.resolver
+ jbosgi-resolver-felix
+ 3.0.1.Final-redhat-2
+
+
+ org.jboss.osgi.repository
+ jbosgi-repository-api
+ 2.1.0.Final-redhat-2
+
+
+ org.jboss.osgi.repository
+ jbosgi-repository-core
+ 2.1.0.Final-redhat-2
+
+
+ org.jboss.osgi.spi
+ jbosgi-spi
+ 3.2.0.Final-redhat-2
+
+
+ org.jboss.osgi.vfs
+ jbosgi-vfs
+ 1.2.1.Final-redhat-4
+
+
+ org.jboss.osgi.vfs
+ jbosgi-vfs30
+ 1.2.1.Final-redhat-4
+
+
+ org.jboss.remoting3
+ jboss-remoting
+ 3.3.8.Final-redhat-1
+
+
+ org.jboss.remotingjmx
+ remoting-jmx
+ 1.1.3.Final-redhat-2
+
+
+ org.jboss.resteasy
+ resteasy-jaxrs
+ 2.3.13.Final-redhat-1
+
+
+ org.jboss.resteasy
+ async-http-servlet-3.0
+ 2.3.13.Final-redhat-1
+
+
+ org.jboss.resteasy
+ resteasy-spring
+ 2.3.13.Final-redhat-1
+
+
+ org.jboss.resteasy
+ resteasy-cdi
+ 2.3.13.Final-redhat-1
+
+
+ org.jboss.resteasy
+ resteasy-jaxb-provider
+ 2.3.13.Final-redhat-1
+
+
+ org.jboss.resteasy
+ resteasy-atom-provider
+ 2.3.13.Final-redhat-1
+
+
+ org.jboss.resteasy
+ resteasy-jackson-provider
+ 2.3.13.Final-redhat-1
+
+
+ org.jboss.resteasy
+ resteasy-jettison-provider
+ 2.3.13.Final-redhat-1
+
+
+ org.jboss.resteasy
+ resteasy-jsapi
+ 2.3.13.Final-redhat-1
+
+
+ org.jboss.resteasy
+ resteasy-multipart-provider
+ 2.3.13.Final-redhat-1
+
+
+ org.jboss.resteasy
+ resteasy-hibernatevalidator-provider
+ 2.3.13.Final-redhat-1
+
+
+ org.jboss.resteasy
+ resteasy-yaml-provider
+ 2.3.13.Final-redhat-1
+
+
+ org.jboss.sasl
+ jboss-sasl
+ 1.0.5.Final-redhat-1
+
+
+ org.jboss.seam.integration
+ jboss-seam-int-jbossas
+ 6.0.0.GA-redhat-3
+
+
+ org.jboss.security
+ jboss-negotiation-common
+ 2.3.11.Final-redhat-1
+
+
+ org.jboss.security
+ jboss-negotiation-extras
+ 2.3.11.Final-redhat-1
+
+
+ org.jboss.security
+ jboss-negotiation-net
+ 2.3.11.Final-redhat-1
+
+
+ org.jboss.security
+ jboss-negotiation-ntlm
+ 2.3.11.Final-redhat-1
+
+
+ org.jboss.security
+ jboss-negotiation-spnego
+ 2.3.11.Final-redhat-1
+
+
+ org.jboss.security
+ jbossxacml
+ 2.0.8.Final-redhat-5
+
+
+ org.jboss.shrinkwrap
+ shrinkwrap-api
+ 1.1.2.redhat-1
+
+
+ org.jboss.shrinkwrap
+ shrinkwrap-spi
+ 1.1.2.redhat-1
+
+
+ org.jboss.shrinkwrap
+ shrinkwrap-impl-base
+ 1.1.2.redhat-1
+
+
+ org.jboss.slf4j
+ slf4j-jboss-logmanager
+ 1.0.3.GA-redhat-1
+
+
+ org.jboss.spec.javax.ejb
+ jboss-ejb-api_3.1_spec
+ 1.0.2.Final-redhat-3
+
+
+ org.jboss.spec.javax.el
+ jboss-el-api_2.2_spec
+ 1.0.6.Final-redhat-1
+
+
+ org.jboss.spec.javax.faces
+ jboss-jsf-api_2.1_spec
+ 2.1.28.SP2-redhat-1
+
+
+ org.jboss.spec.javax.enterprise.deploy
+ jboss-jad-api_1.2_spec
+ 1.0.1.Final-redhat-3
+
+
+ org.jboss.spec.javax.interceptor
+ jboss-interceptors-api_1.1_spec
+ 1.0.1.Final-redhat-3
+
+
+ org.jboss.spec.javax.jms
+ jboss-jms-api_1.1_spec
+ 1.0.1.Final-redhat-3
+
+
+ org.jboss.spec.javax.management.j2ee
+ jboss-j2eemgmt-api_1.1_spec
+ 1.0.1.Final-redhat-3
+
+
+ org.jboss.spec.javax.resource
+ jboss-connector-api_1.6_spec
+ 1.0.1.Final-redhat-3
+
+
+ org.jboss.spec.javax.rmi
+ jboss-rmi-api_1.0_spec
+ 1.0.4.Final-redhat-3
+
+
+ org.jboss.spec.javax.security.auth.message
+ jboss-jaspi-api_1.0_spec
+ 1.0.1.Final-redhat-3
+
+
+ org.jboss.spec.javax.security.jacc
+ jboss-jacc-api_1.4_spec
+ 1.0.3.Final-redhat-1
+
+
+ org.jboss.spec.javax.servlet
+ jboss-servlet-api_2.5_spec
+ 1.0.1.Final-redhat-3
+
+
+ org.jboss.spec.javax.servlet
+ jboss-servlet-api_3.0_spec
+ 1.0.2.Final-redhat-2
+
+
+ org.jboss.spec.javax.servlet.jsp
+ jboss-jsp-api_2.2_spec
+ 1.0.2.Final-redhat-1
+
+
+ org.jboss.spec.javax.servlet.jstl
+ jboss-jstl-api_1.2_spec
+ 1.0.10.Final-redhat-1
+
+
+ org.jboss.spec.javax.transaction
+ jboss-transaction-api_1.1_spec
+ 1.0.1.Final-redhat-3
+
+
+ org.jboss.spec.javax.xml.bind
+ jboss-jaxb-api_2.2_spec
+ 1.0.4.Final-redhat-3
+
+
+ org.jboss.spec.javax.xml.registry
+ jboss-jaxr-api_1.0_spec
+ 1.0.2.Final-redhat-3
+
+
+ org.jboss.spec.javax.xml.rpc
+ jboss-jaxrpc-api_1.1_spec
+ 1.0.1.Final-redhat-4
+
+
+ org.jboss.spec.javax.xml.soap
+ jboss-saaj-api_1.3_spec
+ 1.0.3.Final-redhat-1
+
+
+ org.jboss.spec.javax.ws.rs
+ jboss-jaxrs-api_1.1_spec
+ 1.0.1.Final-redhat-3
+
+
+ org.jboss.spec.javax.xml.ws
+ jboss-jaxws-api_2.2_spec
+ 2.0.2.Final-redhat-1
+
+
+ org.jboss.stdio
+ jboss-stdio
+ 1.0.2.GA-redhat-1
+
+
+ org.jboss.threads
+ jboss-threads
+ 2.1.2.Final-redhat-1
+
+
+ org.jboss.metadata
+ jboss-metadata-appclient
+ 7.2.2.Final-redhat-1
+
+
+ org.jboss.metadata
+ jboss-metadata-common
+ 7.2.2.Final-redhat-1
+
+
+ org.jboss.metadata
+ jboss-metadata-ear
+ 7.2.2.Final-redhat-1
+
+
+ org.jboss.metadata
+ jboss-metadata-ejb
+ 7.2.2.Final-redhat-1
+
+
+ org.jboss.metadata
+ jboss-metadata-web
+ 7.2.2.Final-redhat-1
+
+
+ org.jboss.mod_cluster
+ mod_cluster-core
+ 1.2.12.Final-redhat-1
+
+
+ org.jboss.mod_cluster
+ mod_cluster-container-spi
+ 1.2.12.Final-redhat-1
+
+
+ org.jboss.mod_cluster
+ mod_cluster-container-catalina
+ 1.2.12.Final-redhat-1
+
+
+ org.jboss.mod_cluster
+ mod_cluster-container-jbossweb
+ 1.2.12.Final-redhat-1
+
+
+ org.eclipse.jdt.core.compiler
+ ecj
+ 4.4.2.redhat-1
+
+
+ org.jboss.web
+ jbossweb
+ 7.5.17.Final-redhat-1
+
+
+ org.jboss.weld
+ weld-core
+ 1.1.33.Final-redhat-1
+
+
+ org.jboss.weld
+ weld-api
+ 1.1.0.Final-redhat-7
+
+
+ org.jboss.weld
+ weld-spi
+ 1.1.0.Final-redhat-7
+
+
+ org.jboss
+ jbossxb
+ 2.0.3.GA-redhat-3
+
+
+ org.jboss.xnio
+ xnio-api
+ 3.0.15.GA-redhat-1
+
+
+ org.jboss.xnio
+ xnio-nio
+ 3.0.15.GA-redhat-1
+
+
+ org.jboss.ws
+ jbossws-common
+ 2.3.1.Final-redhat-1
+
+
+ org.jboss.ws
+ jbossws-common-tools
+ 1.2.0.Final-redhat-2
+
+
+ org.jboss.ws.cxf
+ jbossws-cxf-client
+ 4.3.6.Final-redhat-1
+
+
+ org.jboss.ws.cxf
+ jbossws-cxf-factories
+ 4.3.6.Final-redhat-1
+
+
+ org.jboss.ws.cxf
+ jbossws-cxf-transports-httpserver
+ 4.3.6.Final-redhat-1
+
+
+ org.jboss.ws.cxf
+ jbossws-cxf-transports-udp
+ 4.3.6.Final-redhat-1
+
+
+ org.jboss.ws.cxf
+ jbossws-cxf-resources
+ 4.3.6.Final-redhat-1
+ jboss720
+
+
+ org.jboss.ws.cxf
+ jbossws-cxf-server
+ 4.3.6.Final-redhat-1
+
+
+ org.jboss.ws.native
+ jbossws-native-core
+ 4.2.1.Final-redhat-1
+
+
+ org.jboss.ws.native
+ jbossws-native-services
+ 4.2.1.Final-redhat-1
+
+
+ org.jboss.ws
+ jbossws-api
+ 1.0.2.Final-redhat-1
+
+
+ org.jboss.ws
+ jbossws-spi
+ 2.3.1.Final-redhat-1
+
+
+ org.jboss.ws.projects
+ jaxws-jboss-httpserver-httpspi
+ 1.0.1.GA-redhat-2
+
+
+ org.jdom
+ jdom
+ 1.1.3.redhat-2
+
+
+ org.jgroups
+ jgroups
+ 3.2.16.Final-redhat-1
+
+
+ org.kohsuke.rngom
+ rngom
+ 201103.0.0.redhat-4
+
+
+ org.osgi
+ org.osgi.core
+ 4.2.0.redhat-8
+
+
+ org.osgi
+ org.osgi.enterprise
+ 4.2.0.redhat-10
+
+
+ org.picketbox
+ picketbox
+ 4.1.2.Final-redhat-1
+
+
+ org.picketbox
+ picketbox-commons
+ 1.0.0.final-redhat-3
+
+
+ org.picketlink
+ picketlink-common
+ 2.5.4.SP9-redhat-2
+
+
+ org.picketlink
+ picketlink-config
+ 2.5.4.SP9-redhat-2
+
+
+ org.picketlink
+ picketlink-api
+ 2.5.4.SP9-redhat-2
+
+
+ org.picketlink
+ picketlink-impl
+ 2.5.4.SP9-redhat-2
+
+
+ org.picketlink
+ picketlink-idm-api
+ 2.5.4.SP9-redhat-2
+
+
+ org.picketlink
+ picketlink-idm-impl
+ 2.5.4.SP9-redhat-2
+
+
+ org.picketlink
+ picketlink-idm-simple-schema
+ 2.5.4.SP9-redhat-2
+
+
+ org.picketlink
+ picketlink-federation
+ 2.5.4.SP9-redhat-2
+
+
+ org.picketlink.distribution
+ picketlink-jbas7
+ 2.5.4.SP9-redhat-2
+
+
+ org.picketbox
+ picketbox-infinispan
+ 4.1.2.Final-redhat-1
+
+
+ org.powermock
+ powermock-module-junit4
+ 1.5
+
+
+ org.powermock
+ powermock-api-mockito
+ 1.5
+
+
+ org.projectodd.stilts
+ stilts-stomp-client
+ 0.1.26.redhat-4
+
+
+ org.projectodd.stilts
+ stilts-stomplet-server-bundle
+ 0.1.26.redhat-4
+
+
+ org.projectodd.stilts
+ stilts-stomplet-server-core
+ 0.1.26.redhat-4
+
+
+ org.slf4j
+ jcl-over-slf4j
+ 1.7.2.redhat-3
+
+
+ org.slf4j
+ slf4j-api
+ 1.7.2.redhat-3
+
+
+ org.slf4j
+ slf4j-ext
+ 1.7.2.redhat-3
+
+
+ org.slf4j
+ slf4j-simple
+ 1.7.2.redhat-3
+
+
+ org.eclipse.aether
+ aether-api
+ 1.0.0.v20140518
+
+
+ org.eclipse.aether
+ aether-spi
+ 1.0.0.v20140518
+
+
+ org.eclipse.aether
+ aether-util
+ 1.0.0.v20140518
+
+
+ org.eclipse.aether
+ aether-impl
+ 1.0.0.v20140518
+
+
+ org.eclipse.aether
+ aether-connector-basic
+ 1.0.0.v20140518
+
+
+ org.eclipse.aether
+ aether-transport-file
+ 1.0.0.v20140518
+
+
+ org.eclipse.aether
+ aether-transport-http
+ 1.0.0.v20140518
+
+
+ org.testng
+ testng
+ 6.1.1
+
+
+ org.yaml
+ snakeyaml
+ 1.8.0.redhat-3
+
+
+ wsdl4j
+ wsdl4j
+ 1.6.3.redhat-1
+
+
+ xalan
+ serializer
+ 2.7.1.redhat-11
+
+
+ xalan
+ xalan
+ 2.7.1.redhat-11
+
+
+ xml-resolver
+ xml-resolver
+ 1.2.0.redhat-10
+
+
+ xerces
+ xercesImpl
+ 2.9.1.redhat-6
+
+
+ xom
+ xom
+ 1.2.7.redhat-4
+
+
+ org.jboss.integration-platform
+ jboss-integration-platform-bom
+ ${version.org.jboss.integration-platform}
+ pom
+ import
+
+
+ junit
+ junit
+ ${version.junit}
+
+
+ org.mockito
+ mockito-all
+ ${version.org.mockito}
+
+
+ org.jboss.teiid.connectors
+ translator-object
+ ${version.teiid}
+
+
+ org.jboss.teiid
+ teiid-api
+ ${version.teiid}
+
+
+ org.jboss.teiid
+ teiid-jdbc
+ ${version.teiid}
+
+
+ org.jboss.bom.eap
+ jboss-javaee-6.0-with-tools
+ ${version.org.jboss.bom.jboss-javaee-6.0-with-tools}
+ pom
+ import
+
+
+ javax.enterprise
+ cdi-api
+ ${version.javax.enterprise}
+
+
+ org.scannotation
+ scannotation
+ ${version.org.scannotation}
+
+
+ net.jcip
+ jcip-annotations
+ ${version.net.jcip}
+ provided
+
+
+ org.hibernate
+ hibernate-search-engine
+ ${version.org.hibernate.search}
+
+
+ org.jboss.spec.javax.annotation
+ jboss-annotations-api_1.1_spec
+ ${version.javax.annotation}
+
+
+ org.kie
+ kie-api
+ ${version.org.drools}
+
+
+ org.drools
+ drools-core
+ ${version.org.drools}
+
+
+ org.drools
+ drools-compiler
+ ${version.org.drools}
+
+
+ org.apache.httpcomponents
+ httpclient
+ ${version.org.apache.httpcomponents.httpclient}
+
+
+ org.apache.httpcomponents
+ httpcore
+ ${version.org.apache.httpcomponents.httpcore}
+
+
+ commons-codec
+ commons-codec
+ ${version.commons-codec}
+
+
+ commons-httpclient
+ commons-httpclient
+ ${version.commons-httpclient}
+
+
+
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-compiler-plugin
+ 3.1
+
+ ${maven.compiler.source}
+ ${maven.compiler.target}
+ false
+ false
+
+
+
+ maven-surefire-plugin
+
+
+ **/*TestCase.java
+ **/*Test.java
+ **/Test*.java
+
+
+ **/Abstract*TestCase.java
+
+ **/Test*$*.java
+
+
+ ${basedir}/target
+ ${basedir}/target
+
+
+ 2.17
+
+
+
+ org.apache.maven.plugins
+ maven-jar-plugin
+ 2.5
+
+
+
+ test-jar
+
+
+
+
+
+
+ true
+ true
+
+
+ ${project.url}
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-source-plugin
+ 2.3
+
+
+ attach-sources
+
+ jar-no-fork
+
+
+
+
+
+ org.commonjava.maven.plugins
+ project-sources-maven-plugin
+ 0.3
+
+
+ project-sources-archive
+ initialize
+
+ archive
+
+
+
+
+
+ com.redhat.rcm.maven.plugin
+ buildmetadata-maven-plugin
+ 1.7.0
+
+
+ build-metadata
+ validate
+
+ provide-buildmetadata
+
+
+
+ ${session.executionRootDirectory}
+
+ false
+ false
+ false
+ false
+ true
+ false
+ false
+ build.metadata
+ false
+ true
+ false
+ false
+ false
+ false
+ true
+ false
+ true
+
+
+
+
+
+
+
+
+
+
+ dist
+
+
+ dist
+
+
+
+ dist
+
+
+
+ disable-enforce-managed-deps-rule
+
+
+ !enableEnforceManagedDepsRule
+
+
+
+
+
+ maven-enforcer-plugin
+ 1.3.1
+
+
+ no-managed-deps
+ none
+
+
+
+
+
+
+
+
+
+