[teiid-commits] teiid SVN: r555 - in trunk/connectors/sandbox: connector-object and 2 other directories.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Thu Mar 12 19:09:37 EDT 2009


Author: rareddy
Date: 2009-03-12 19:09:37 -0400 (Thu, 12 Mar 2009)
New Revision: 555

Modified:
   trunk/connectors/sandbox/connector-exec/pom.xml
   trunk/connectors/sandbox/connector-object/pom.xml
   trunk/connectors/sandbox/connector-oracle-spatial/pom.xml
   trunk/connectors/sandbox/connector-yahoo/pom.xml
Log:
TEIID-413: classpath for the connectors will be computed based upon the dependencies defined for the connector, and then it will be inserted into the CDK xml fragment, which will be included with the connector artifact zip.

Modified: trunk/connectors/sandbox/connector-exec/pom.xml
===================================================================
--- trunk/connectors/sandbox/connector-exec/pom.xml	2009-03-12 23:03:44 UTC (rev 554)
+++ trunk/connectors/sandbox/connector-exec/pom.xml	2009-03-12 23:09:37 UTC (rev 555)
@@ -10,6 +10,16 @@
   <name>Exec Connector</name>
   <description>This connector executes Admin API calls and System.exec calls through the connector using SQL representation</description>
   <dependencies>
+    <dependency>
+        <groupId>org.jboss.teiid</groupId>
+        <artifactId>teiid-connector-api</artifactId>
+        <scope>provided</scope>
+    </dependency>
+    <dependency>
+        <groupId>org.jboss.teiid</groupId>
+        <artifactId>teiid-common-core</artifactId>
+        <scope>provided</scope>
+    </dependency>
 	<dependency>
 	  <groupId>ant</groupId>
 	  <artifactId>ant</artifactId>

Modified: trunk/connectors/sandbox/connector-object/pom.xml
===================================================================
--- trunk/connectors/sandbox/connector-object/pom.xml	2009-03-12 23:03:44 UTC (rev 554)
+++ trunk/connectors/sandbox/connector-object/pom.xml	2009-03-12 23:09:37 UTC (rev 555)
@@ -13,6 +13,17 @@
     any JAVA API, and turn it into connector</description>
   <dependencies>
     <dependency>
+        <groupId>org.jboss.teiid</groupId>
+        <artifactId>teiid-connector-api</artifactId>
+        <scope>provided</scope>
+    </dependency>
+    <dependency>
+        <groupId>org.jboss.teiid</groupId>
+        <artifactId>teiid-common-core</artifactId>
+        <scope>provided</scope>
+    </dependency>
+
+    <dependency>
       <groupId>ant</groupId>
       <artifactId>ant</artifactId>
       <version>1.6.5</version>

Modified: trunk/connectors/sandbox/connector-oracle-spatial/pom.xml
===================================================================
--- trunk/connectors/sandbox/connector-oracle-spatial/pom.xml	2009-03-12 23:03:44 UTC (rev 554)
+++ trunk/connectors/sandbox/connector-oracle-spatial/pom.xml	2009-03-12 23:09:37 UTC (rev 555)
@@ -11,6 +11,17 @@
   <description>Oracle Spatial Connector</description>
   <dependencies>
     <dependency>
+        <groupId>org.jboss.teiid</groupId>
+        <artifactId>teiid-connector-api</artifactId>
+        <scope>provided</scope>
+    </dependency>
+    <dependency>
+        <groupId>org.jboss.teiid</groupId>
+        <artifactId>teiid-common-core</artifactId>
+        <scope>provided</scope>
+    </dependency>
+  
+    <dependency>
       <groupId>org.jboss.teiid.connectors</groupId>
       <artifactId>connector-jdbc</artifactId>
       <version>${project.version}</version>

Modified: trunk/connectors/sandbox/connector-yahoo/pom.xml
===================================================================
--- trunk/connectors/sandbox/connector-yahoo/pom.xml	2009-03-12 23:03:44 UTC (rev 554)
+++ trunk/connectors/sandbox/connector-yahoo/pom.xml	2009-03-12 23:09:37 UTC (rev 555)
@@ -9,4 +9,17 @@
   <artifactId>connector-yahoo</artifactId>
   <name>Yahoo Connector</name>
   <description>Test connector used to query ticker symbols from Yahoo website</description>
+  
+  <dependencies>
+    <dependency>
+        <groupId>org.jboss.teiid</groupId>
+        <artifactId>teiid-connector-api</artifactId>
+        <scope>provided</scope>
+    </dependency>
+    <dependency>
+        <groupId>org.jboss.teiid</groupId>
+        <artifactId>teiid-common-core</artifactId>
+        <scope>provided</scope>
+    </dependency>
+  </dependencies>  
 </project>
\ No newline at end of file




More information about the teiid-commits mailing list