teiid SVN: r4008 - branches/8.0.x/engine/src/test/java/org/teiid/query/metadata.
by teiid-commits@lists.jboss.org
Author: rareddy
Date: 2012-04-17 11:21:24 -0400 (Tue, 17 Apr 2012)
New Revision: 4008
Modified:
branches/8.0.x/engine/src/test/java/org/teiid/query/metadata/TestMetadataValidator.java
Log:
TEIID-2001: adding test to skip document models
Modified: branches/8.0.x/engine/src/test/java/org/teiid/query/metadata/TestMetadataValidator.java
===================================================================
--- branches/8.0.x/engine/src/test/java/org/teiid/query/metadata/TestMetadataValidator.java 2012-04-16 20:55:47 UTC (rev 4007)
+++ branches/8.0.x/engine/src/test/java/org/teiid/query/metadata/TestMetadataValidator.java 2012-04-17 15:21:24 UTC (rev 4008)
@@ -32,6 +32,7 @@
import org.teiid.adminapi.impl.VDBMetaData;
import org.teiid.metadata.MetadataFactory;
import org.teiid.metadata.MetadataStore;
+import org.teiid.metadata.Table;
import org.teiid.query.function.SystemFunctionManager;
import org.teiid.query.parser.TestDDLParser;
import org.teiid.query.validator.ValidatorFailure;
@@ -266,4 +267,34 @@
assertEquals("G1", store.getSchema("vm1").getTable("G2").getMaterializedTable().getName());
}
+
+ @Test
+ public void testSkipDocumentModel() throws Exception {
+ ModelMetaData model = new ModelMetaData();
+ model.setName("xmlstuff");
+ model.setModelType(Model.Type.VIRTUAL);
+ vdb.addModel(model);
+
+ MetadataFactory mf = new MetadataFactory("myVDB",1, "xmlstuff", TestDDLParser.getDataTypes(), new Properties(), null);
+ mf.setPhysical(false);
+
+ Table t = mf.addTable("xmldoctable");
+ t.setTableType(Table.Type.Document);
+ mf.addColumn("c1", "string", t);
+ t.setSelectTransformation("some dummy stuff, should not be validated");
+ t.setVirtual(true);
+
+ Table t2 = mf.addTable("xmldoctable2");
+ t2.setTableType(Table.Type.XmlMappingClass);
+ mf.addColumn("c1", "string", t2);
+ t2.setSelectTransformation("some dummy stuff, should not be validated");
+ t2.setVirtual(true);
+ mf.mergeInto(store);
+
+ buildTransformationMetadata();
+
+ ValidatorReport report = new ValidatorReport();
+ report = MetadataValidator.validate(this.vdb, this.store);
+ assertFalse(printError(report), report.hasItems());
+ }
}
13 years
teiid SVN: r4007 - in branches/8.0.x: engine/src/main/resources/org/teiid/query and 1 other directories.
by teiid-commits@lists.jboss.org
Author: rareddy
Date: 2012-04-16 16:55:47 -0400 (Mon, 16 Apr 2012)
New Revision: 4007
Modified:
branches/8.0.x/engine/src/main/java/org/teiid/query/metadata/MetadataValidator.java
branches/8.0.x/engine/src/main/resources/org/teiid/query/i18n.properties
branches/8.0.x/jboss-integration/src/main/java/org/teiid/jboss/VDBService.java
Log:
TEIID-2001: added code to skip reading the models that are other than PHYSICAL and VIRTUAL. Also added code to skip validation on the XML document models.
Modified: branches/8.0.x/engine/src/main/java/org/teiid/query/metadata/MetadataValidator.java
===================================================================
--- branches/8.0.x/engine/src/main/java/org/teiid/query/metadata/MetadataValidator.java 2012-04-16 20:27:12 UTC (rev 4006)
+++ branches/8.0.x/engine/src/main/java/org/teiid/query/metadata/MetadataValidator.java 2012-04-16 20:55:47 UTC (rev 4007)
@@ -145,6 +145,13 @@
ModelMetaData model = vdb.getModel(schema.getName());
for (Table t:schema.getTables().values()) {
+ // no need to verify the transformation of the xml mapping document,
+ // as this is very specific and designer already validates it.
+ if (t.getTableType() == Table.Type.Document
+ || t.getTableType() == Table.Type.XmlMappingClass
+ || t.getTableType() == Table.Type.XmlStagingTable) {
+ continue;
+ }
if (t.isVirtual()) {
if (t.getSelectTransformation() == null) {
log(report, model, QueryPlugin.Util.gs(QueryPlugin.Event.TEIID31079, t.getName(), model.getName()));
Modified: branches/8.0.x/engine/src/main/resources/org/teiid/query/i18n.properties
===================================================================
--- branches/8.0.x/engine/src/main/resources/org/teiid/query/i18n.properties 2012-04-16 20:27:12 UTC (rev 4006)
+++ branches/8.0.x/engine/src/main/resources/org/teiid/query/i18n.properties 2012-04-16 20:55:47 UTC (rev 4007)
@@ -73,6 +73,7 @@
QueryParser.nullSqlCrit=Parser cannot parse a null sql criteria.
QueryParser.lexicalError=Lexical error: {0}
QueryParser.nullSqlExpr=Parser cannot parse a null sql expression.
+TEIID30378=Direct usage of XQuery is no longer supported, use XMLQUERY instead.
TEIID30379=Direct usage of XQuery is no longer supported, use XMLQUERY instead.
# processor (006)
Modified: branches/8.0.x/jboss-integration/src/main/java/org/teiid/jboss/VDBService.java
===================================================================
--- branches/8.0.x/jboss-integration/src/main/java/org/teiid/jboss/VDBService.java 2012-04-16 20:27:12 UTC (rev 4006)
+++ branches/8.0.x/jboss-integration/src/main/java/org/teiid/jboss/VDBService.java 2012-04-16 20:55:47 UTC (rev 4007)
@@ -170,8 +170,13 @@
throw new StartException(IntegrationPlugin.Util.gs(IntegrationPlugin.Event.TEIID50086, model.getName(), vdb.getName(), vdb.getVersion()));
}
model.addAttchment(MetadataRepository.class, metadataRepository);
- loadMetadata(this.vdb, model, cmr, metadataRepository, store);
- LogManager.logTrace(LogConstants.CTX_RUNTIME, "Model ", model.getName(), "in VDB ", vdb.getName(), " was being loaded from its repository in separate thread"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+ if (model.getModelType() == Model.Type.PHYSICAL || model.getModelType() == Model.Type.VIRTUAL) {
+ loadMetadata(this.vdb, model, cmr, metadataRepository, store);
+ LogManager.logTrace(LogConstants.CTX_RUNTIME, "Model ", model.getName(), "in VDB ", vdb.getName(), " was being loaded from its repository in separate thread"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+ }
+ else {
+ LogManager.logTrace(LogConstants.CTX_RUNTIME, "Model ", model.getName(), "in VDB ", vdb.getName(), " skipped being loaded because of its type ", model.getModelType()); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
+ }
}
synchronized (this.vdb) {
13 years
teiid SVN: r4006 - branches/8.0.x/connectors/translator-hive/.settings.
by teiid-commits@lists.jboss.org
Author: rareddy
Date: 2012-04-16 16:27:12 -0400 (Mon, 16 Apr 2012)
New Revision: 4006
Modified:
branches/8.0.x/connectors/translator-hive/.settings/
Log:
adding ignores
Property changes on: branches/8.0.x/connectors/translator-hive/.settings
___________________________________________________________________
Modified: svn:ignore
- org.eclipse.jdt.core.prefs
org.maven.ide.eclipse.prefs
+ org.eclipse.jdt.core.prefs
org.maven.ide.eclipse.prefs
org.eclipse.core.resources.prefs
org.eclipse.m2e.core.prefs
13 years
teiid SVN: r4005 - in trunk: admin and 30 other directories.
by teiid-commits@lists.jboss.org
Author: shawkins
Date: 2012-04-15 22:35:53 -0400 (Sun, 15 Apr 2012)
New Revision: 4005
Modified:
trunk/admin/pom.xml
trunk/adminshell/pom.xml
trunk/api/pom.xml
trunk/build/pom.xml
trunk/client-jdk15/pom.xml
trunk/client/pom.xml
trunk/common-core/pom.xml
trunk/connectors/connector-file/pom.xml
trunk/connectors/connector-ldap/pom.xml
trunk/connectors/connector-salesforce/pom.xml
trunk/connectors/connector-ws/pom.xml
trunk/connectors/pom.xml
trunk/connectors/salesforce-api/pom.xml
trunk/connectors/sandbox/pom.xml
trunk/connectors/sandbox/translator-yahoo/pom.xml
trunk/connectors/translator-file/pom.xml
trunk/connectors/translator-hive/pom.xml
trunk/connectors/translator-jdbc/pom.xml
trunk/connectors/translator-ldap/pom.xml
trunk/connectors/translator-loopback/pom.xml
trunk/connectors/translator-olap/pom.xml
trunk/connectors/translator-salesforce/pom.xml
trunk/connectors/translator-ws/pom.xml
trunk/engine/pom.xml
trunk/hibernate-dialect/pom.xml
trunk/jboss-integration/pom.xml
trunk/metadata/pom.xml
trunk/pom.xml
trunk/runtime/pom.xml
trunk/test-integration/common/pom.xml
trunk/test-integration/db/pom.xml
trunk/test-integration/pom.xml
Log:
updating to 8.1
Modified: trunk/admin/pom.xml
===================================================================
--- trunk/admin/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/admin/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-admin</artifactId>
Modified: trunk/adminshell/pom.xml
===================================================================
--- trunk/adminshell/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/adminshell/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-adminshell</artifactId>
Modified: trunk/api/pom.xml
===================================================================
--- trunk/api/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/api/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-api</artifactId>
Modified: trunk/build/pom.xml
===================================================================
--- trunk/build/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/build/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -2,7 +2,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid</artifactId>
Modified: trunk/client/pom.xml
===================================================================
--- trunk/client/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/client/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-client</artifactId>
Modified: trunk/client-jdk15/pom.xml
===================================================================
--- trunk/client-jdk15/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/client-jdk15/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-client-jdk15</artifactId>
Modified: trunk/common-core/pom.xml
===================================================================
--- trunk/common-core/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/common-core/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-common-core</artifactId>
Modified: trunk/connectors/connector-file/pom.xml
===================================================================
--- trunk/connectors/connector-file/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/connector-file/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>connector-file</artifactId>
Modified: trunk/connectors/connector-ldap/pom.xml
===================================================================
--- trunk/connectors/connector-ldap/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/connector-ldap/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -2,7 +2,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>connector-ldap</artifactId>
Modified: trunk/connectors/connector-salesforce/pom.xml
===================================================================
--- trunk/connectors/connector-salesforce/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/connector-salesforce/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>connector-salesforce</artifactId>
Modified: trunk/connectors/connector-ws/pom.xml
===================================================================
--- trunk/connectors/connector-ws/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/connector-ws/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>connector-ws</artifactId>
Modified: trunk/connectors/pom.xml
===================================================================
--- trunk/connectors/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.teiid</groupId>
Modified: trunk/connectors/salesforce-api/pom.xml
===================================================================
--- trunk/connectors/salesforce-api/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/salesforce-api/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -2,7 +2,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>salesforce-api</artifactId>
Modified: trunk/connectors/sandbox/pom.xml
===================================================================
--- trunk/connectors/sandbox/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/sandbox/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.teiid.connectors</groupId>
Modified: trunk/connectors/sandbox/translator-yahoo/pom.xml
===================================================================
--- trunk/connectors/sandbox/translator-yahoo/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/sandbox/translator-yahoo/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.jboss.teiid.connectors</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-yahoo</artifactId>
Modified: trunk/connectors/translator-file/pom.xml
===================================================================
--- trunk/connectors/translator-file/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/translator-file/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-file</artifactId>
Modified: trunk/connectors/translator-hive/pom.xml
===================================================================
--- trunk/connectors/translator-hive/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/translator-hive/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-hive</artifactId>
Modified: trunk/connectors/translator-jdbc/pom.xml
===================================================================
--- trunk/connectors/translator-jdbc/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/translator-jdbc/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-jdbc</artifactId>
Modified: trunk/connectors/translator-ldap/pom.xml
===================================================================
--- trunk/connectors/translator-ldap/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/translator-ldap/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -2,7 +2,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-ldap</artifactId>
Modified: trunk/connectors/translator-loopback/pom.xml
===================================================================
--- trunk/connectors/translator-loopback/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/translator-loopback/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-loopback</artifactId>
Modified: trunk/connectors/translator-olap/pom.xml
===================================================================
--- trunk/connectors/translator-olap/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/translator-olap/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-olap</artifactId>
Modified: trunk/connectors/translator-salesforce/pom.xml
===================================================================
--- trunk/connectors/translator-salesforce/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/translator-salesforce/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-salesforce</artifactId>
Modified: trunk/connectors/translator-ws/pom.xml
===================================================================
--- trunk/connectors/translator-ws/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/connectors/translator-ws/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-ws</artifactId>
Modified: trunk/engine/pom.xml
===================================================================
--- trunk/engine/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/engine/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-engine</artifactId>
Modified: trunk/hibernate-dialect/pom.xml
===================================================================
--- trunk/hibernate-dialect/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/hibernate-dialect/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -2,7 +2,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-hibernate-dialect</artifactId>
Modified: trunk/jboss-integration/pom.xml
===================================================================
--- trunk/jboss-integration/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/jboss-integration/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -2,7 +2,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.teiid</groupId>
Modified: trunk/metadata/pom.xml
===================================================================
--- trunk/metadata/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/metadata/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-metadata</artifactId>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -10,7 +10,7 @@
<artifactId>teiid-parent</artifactId>
<packaging>pom</packaging>
<name>Teiid</name>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
<description>Federated SQL and XML query engine.</description>
<properties>
<ant.version>1.7.0</ant.version>
Modified: trunk/runtime/pom.xml
===================================================================
--- trunk/runtime/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/runtime/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.teiid</groupId>
Modified: trunk/test-integration/common/pom.xml
===================================================================
--- trunk/test-integration/common/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/test-integration/common/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-test-integration</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>test-integration-common</artifactId>
Modified: trunk/test-integration/db/pom.xml
===================================================================
--- trunk/test-integration/db/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/test-integration/db/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -9,7 +9,7 @@
<parent>
<artifactId>teiid-test-integration</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: trunk/test-integration/pom.xml
===================================================================
--- trunk/test-integration/pom.xml 2012-04-14 01:10:37 UTC (rev 4004)
+++ trunk/test-integration/pom.xml 2012-04-16 02:35:53 UTC (rev 4005)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR2-SNAPSHOT</version>
+ <version>8.1.0.Alpha1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-test-integration</artifactId>
13 years
teiid SVN: r4002 - branches.
by teiid-commits@lists.jboss.org
Author: shawkins
Date: 2012-04-13 14:26:19 -0400 (Fri, 13 Apr 2012)
New Revision: 4002
Added:
branches/8.0.x/
Log:
adding 8.0.x branch
13 years
teiid SVN: r4001 - in trunk: admin and 30 other directories.
by teiid-commits@lists.jboss.org
Author: rareddy
Date: 2012-04-13 11:53:28 -0400 (Fri, 13 Apr 2012)
New Revision: 4001
Modified:
trunk/admin/pom.xml
trunk/adminshell/pom.xml
trunk/api/pom.xml
trunk/build/pom.xml
trunk/client-jdk15/pom.xml
trunk/client/pom.xml
trunk/common-core/pom.xml
trunk/connectors/connector-file/pom.xml
trunk/connectors/connector-ldap/pom.xml
trunk/connectors/connector-salesforce/pom.xml
trunk/connectors/connector-ws/pom.xml
trunk/connectors/pom.xml
trunk/connectors/salesforce-api/pom.xml
trunk/connectors/sandbox/pom.xml
trunk/connectors/sandbox/translator-yahoo/pom.xml
trunk/connectors/translator-file/pom.xml
trunk/connectors/translator-hive/pom.xml
trunk/connectors/translator-jdbc/pom.xml
trunk/connectors/translator-ldap/pom.xml
trunk/connectors/translator-loopback/pom.xml
trunk/connectors/translator-olap/pom.xml
trunk/connectors/translator-salesforce/pom.xml
trunk/connectors/translator-ws/pom.xml
trunk/engine/pom.xml
trunk/hibernate-dialect/pom.xml
trunk/jboss-integration/pom.xml
trunk/metadata/pom.xml
trunk/pom.xml
trunk/runtime/pom.xml
trunk/test-integration/common/pom.xml
trunk/test-integration/db/pom.xml
trunk/test-integration/pom.xml
Log:
[maven-release-plugin] prepare for next development iteration
Modified: trunk/admin/pom.xml
===================================================================
--- trunk/admin/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/admin/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-admin</artifactId>
Modified: trunk/adminshell/pom.xml
===================================================================
--- trunk/adminshell/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/adminshell/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-adminshell</artifactId>
Modified: trunk/api/pom.xml
===================================================================
--- trunk/api/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/api/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-api</artifactId>
Modified: trunk/build/pom.xml
===================================================================
--- trunk/build/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/build/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -2,7 +2,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid</artifactId>
Modified: trunk/client/pom.xml
===================================================================
--- trunk/client/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/client/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-client</artifactId>
Modified: trunk/client-jdk15/pom.xml
===================================================================
--- trunk/client-jdk15/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/client-jdk15/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-client-jdk15</artifactId>
Modified: trunk/common-core/pom.xml
===================================================================
--- trunk/common-core/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/common-core/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-common-core</artifactId>
Modified: trunk/connectors/connector-file/pom.xml
===================================================================
--- trunk/connectors/connector-file/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/connector-file/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>connector-file</artifactId>
Modified: trunk/connectors/connector-ldap/pom.xml
===================================================================
--- trunk/connectors/connector-ldap/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/connector-ldap/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -2,7 +2,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>connector-ldap</artifactId>
Modified: trunk/connectors/connector-salesforce/pom.xml
===================================================================
--- trunk/connectors/connector-salesforce/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/connector-salesforce/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>connector-salesforce</artifactId>
Modified: trunk/connectors/connector-ws/pom.xml
===================================================================
--- trunk/connectors/connector-ws/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/connector-ws/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>connector-ws</artifactId>
Modified: trunk/connectors/pom.xml
===================================================================
--- trunk/connectors/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.teiid</groupId>
Modified: trunk/connectors/salesforce-api/pom.xml
===================================================================
--- trunk/connectors/salesforce-api/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/salesforce-api/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -2,7 +2,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>salesforce-api</artifactId>
Modified: trunk/connectors/sandbox/pom.xml
===================================================================
--- trunk/connectors/sandbox/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/sandbox/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.teiid.connectors</groupId>
Modified: trunk/connectors/sandbox/translator-yahoo/pom.xml
===================================================================
--- trunk/connectors/sandbox/translator-yahoo/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/sandbox/translator-yahoo/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>sandbox</artifactId>
<groupId>org.jboss.teiid.connectors</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-yahoo</artifactId>
Modified: trunk/connectors/translator-file/pom.xml
===================================================================
--- trunk/connectors/translator-file/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/translator-file/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-file</artifactId>
Modified: trunk/connectors/translator-hive/pom.xml
===================================================================
--- trunk/connectors/translator-hive/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/translator-hive/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-hive</artifactId>
Modified: trunk/connectors/translator-jdbc/pom.xml
===================================================================
--- trunk/connectors/translator-jdbc/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/translator-jdbc/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-jdbc</artifactId>
Modified: trunk/connectors/translator-ldap/pom.xml
===================================================================
--- trunk/connectors/translator-ldap/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/translator-ldap/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -2,7 +2,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-ldap</artifactId>
Modified: trunk/connectors/translator-loopback/pom.xml
===================================================================
--- trunk/connectors/translator-loopback/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/translator-loopback/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-loopback</artifactId>
Modified: trunk/connectors/translator-olap/pom.xml
===================================================================
--- trunk/connectors/translator-olap/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/translator-olap/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-olap</artifactId>
Modified: trunk/connectors/translator-salesforce/pom.xml
===================================================================
--- trunk/connectors/translator-salesforce/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/translator-salesforce/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-salesforce</artifactId>
Modified: trunk/connectors/translator-ws/pom.xml
===================================================================
--- trunk/connectors/translator-ws/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/connectors/translator-ws/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>connectors</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>translator-ws</artifactId>
Modified: trunk/engine/pom.xml
===================================================================
--- trunk/engine/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/engine/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-engine</artifactId>
Modified: trunk/hibernate-dialect/pom.xml
===================================================================
--- trunk/hibernate-dialect/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/hibernate-dialect/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -2,7 +2,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-hibernate-dialect</artifactId>
Modified: trunk/jboss-integration/pom.xml
===================================================================
--- trunk/jboss-integration/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/jboss-integration/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -2,7 +2,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.teiid</groupId>
Modified: trunk/metadata/pom.xml
===================================================================
--- trunk/metadata/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/metadata/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-metadata</artifactId>
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -10,7 +10,7 @@
<artifactId>teiid-parent</artifactId>
<packaging>pom</packaging>
<name>Teiid</name>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
<description>Federated SQL and XML query engine.</description>
<properties>
<ant.version>1.7.0</ant.version>
@@ -37,9 +37,9 @@
<version.junit>4.10</version.junit>
</properties>
<scm>
- <connection>scm:svn:https://anonsvn.jboss.org/repos/teiid/tags/teiid-parent-8.0.0.CR1</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/teiid/tags/teiid-parent-8.0.0.CR1</developerConnection>
- <url>http://anonsvn.jboss.org/repos/teiid/tags/teiid-parent-8.0.0.CR1</url>
+ <connection>scm:svn:https://anonsvn.jboss.org/repos/teiid/trunk</connection>
+ <developerConnection>scm:svn:https://svn.jboss.org/repos/teiid/trunk</developerConnection>
+ <url>http://anonsvn.jboss.org/repos/teiid/trunk</url>
</scm>
<licenses>
<license>
Modified: trunk/runtime/pom.xml
===================================================================
--- trunk/runtime/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/runtime/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.teiid</groupId>
Modified: trunk/test-integration/common/pom.xml
===================================================================
--- trunk/test-integration/common/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/test-integration/common/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-test-integration</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>test-integration-common</artifactId>
Modified: trunk/test-integration/db/pom.xml
===================================================================
--- trunk/test-integration/db/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/test-integration/db/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -9,7 +9,7 @@
<parent>
<artifactId>teiid-test-integration</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
Modified: trunk/test-integration/pom.xml
===================================================================
--- trunk/test-integration/pom.xml 2012-04-13 15:53:03 UTC (rev 4000)
+++ trunk/test-integration/pom.xml 2012-04-13 15:53:28 UTC (rev 4001)
@@ -3,7 +3,7 @@
<parent>
<artifactId>teiid-parent</artifactId>
<groupId>org.jboss.teiid</groupId>
- <version>8.0.0.CR1</version>
+ <version>8.0.0.CR2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>teiid-test-integration</artifactId>
13 years
teiid SVN: r4000 - tags.
by teiid-commits@lists.jboss.org
Author: rareddy
Date: 2012-04-13 11:53:03 -0400 (Fri, 13 Apr 2012)
New Revision: 4000
Added:
tags/teiid-parent-8.0.0.CR1/
Log:
[maven-release-plugin] copy for tag teiid-parent-8.0.0.CR1
13 years