Author: rareddy
Date: 2009-05-15 16:59:59 -0400 (Fri, 15 May 2009)
New Revision: 954
Modified:
trunk/build/assembly/embedded/build-configuration.xml
Log:
TEIID-600: moving all the connector-* jars into "lib" directory of the kits and
keeping only the connector dependencies in the "extensions". Also, removed the
"connector-xxx.jar" file and "connector_patch.jar" from the
"ConnectorTypeClasspath" as libraries specified in here are loaded with
post-delegation model.
Modified: trunk/build/assembly/embedded/build-configuration.xml
===================================================================
--- trunk/build/assembly/embedded/build-configuration.xml 2009-05-15 20:59:30 UTC (rev
953)
+++ trunk/build/assembly/embedded/build-configuration.xml 2009-05-15 20:59:59 UTC (rev
954)
@@ -18,9 +18,16 @@
</unzip>
<move todir="${kit.dir}/extensions">
<fileset dir="${extensions.dir}/unzipped">
- <include name="**/*.jar"/>
+ <exclude name="**/connector-*.jar"/>
+ <exclude name="**/*.xml"/>
</fileset>
</move>
+
+ <move todir="${kit.dir}/lib">
+ <fileset dir="${extensions.dir}/unzipped">
+ <include name="**/connector-*.jar"/>
+ </fileset>
+ </move>
<!-- add all the cdk files, and then add the combined fragment to the config.xml
-->
<concat destfile="${extensions.dir}/unzipped/all-cdks.xml">
Show replies by date