Revision: 6474
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=6474&view=rev
Author: manningr
Date: 2011-11-06 21:06:22 +0000 (Sun, 06 Nov 2011)
Log Message:
-----------
Removed some needless transitive dependencies that only make the jar larger.
Modified Paths:
--------------
trunk/sql12/cli/dbcopy/pom.xml
Modified: trunk/sql12/cli/dbcopy/pom.xml
===================================================================
--- trunk/sql12/cli/dbcopy/pom.xml 2011-11-06 21:02:29 UTC (rev 6473)
+++ trunk/sql12/cli/dbcopy/pom.xml 2011-11-06 21:06:22 UTC (rev 6474)
@@ -99,17 +99,88 @@
<groupId>net.sf.squirrel-sql.plugins</groupId>
<artifactId>dbcopy</artifactId>
<version>3.3.0-SNAPSHOT</version>
- </dependency>
- <!-- <dependency>-->
- <!-- <groupId>net.sf.squirrel-sql</groupId>-->
- <!-- <artifactId>fw</artifactId>-->
- <!-- <version>3.3.0-SNAPSHOT</version>-->
- <!-- <type>pom</type>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>net.sf.squirrel-sql</groupId>-->
- <!-- <artifactId>squirrel-sql</artifactId>-->
- <!-- <version>3.3.0-SNAPSHOT</version>-->
- <!-- </dependency>-->
+ <exclusions>
+ <exclusion>
+ <groupId>antlr</groupId>
+ <artifactId>antlr</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>asm</groupId>
+ <artifactId>asm</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>asm</groupId>
+ <artifactId>asm-attrs</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>cglib</groupId>
+ <artifactId>cglib</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.jidesoft</groupId>
+ <artifactId>jide-oss</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>commons-codec</groupId>
+ <artifactId>commons-codec</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>commons-httpclient</groupId>
+ <artifactId>commons-httpclient</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>jgoodies</groupId>
+ <artifactId>forms</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>net.sourceforge.jexcelapi</groupId>
+ <artifactId>jxl</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>net.sf.ehcache</groupId>
+ <artifactId>ehcache</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-annotations</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-commons-annotations</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-entitymanager</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-beans</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-context</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-context-support</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-core</artifactId>
+ </exclusion>
+
+ </exclusions>
+ </dependency>
+<!-- <dependency> -->
+<!-- <groupId>net.sf.squirrel-sql</groupId> -->
+<!-- <artifactId>fw</artifactId> -->
+<!-- <version>3.3.0-SNAPSHOT</version> -->
+
+<!-- </dependency> -->
+<!-- <dependency> -->
+<!-- <groupId>net.sf.squirrel-sql</groupId> -->
+<!-- <artifactId>squirrel-sql</artifactId> -->
+<!-- <version>3.3.0-SNAPSHOT</version> -->
+<!-- </dependency> -->
</dependencies>
</project>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|