Revision: 6315
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=6315&view=rev
Author: manningr
Date: 2011-07-23 00:15:14 +0000 (Sat, 23 Jul 2011)
Log Message:
-----------
Bug 3172465: (Error connecting to DB after 3.2.1 upgrade) A couple more missing dependencies that prevented the SQL Validator from connecting to the mimer site.
Modified Paths:
--------------
trunk/sql12/installer/pom.xml
trunk/sql12/plugins/sqlval/pom.xml
Modified: trunk/sql12/installer/pom.xml
===================================================================
--- trunk/sql12/installer/pom.xml 2011-07-17 00:31:32 UTC (rev 6314)
+++ trunk/sql12/installer/pom.xml 2011-07-23 00:15:14 UTC (rev 6315)
@@ -102,6 +102,7 @@
<includedArtifact>commons-cli:commons-cli</includedArtifact>
<includedArtifact>commons-codec:commons-codec</includedArtifact>
<includedArtifact>commons-collections:commons-collections</includedArtifact>
+ <includedArtifact>commons-discovery:commons-discovery</includedArtifact>
<includedArtifact>commons-httpclient:commons-httpclient</includedArtifact>
<includedArtifact>commons-lang:commons-lang</includedArtifact>
<includedArtifact>commons-logging:commons-logging</includedArtifact>
Modified: trunk/sql12/plugins/sqlval/pom.xml
===================================================================
--- trunk/sql12/plugins/sqlval/pom.xml 2011-07-17 00:31:32 UTC (rev 6314)
+++ trunk/sql12/plugins/sqlval/pom.xml 2011-07-23 00:15:14 UTC (rev 6315)
@@ -1,4 +1,5 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>net.sf.squirrel-sql.plugins</groupId>
@@ -109,6 +110,12 @@
<artifactId>axis-wsdl4j</artifactId>
<version>1.2</version>
</dependency>
+ <dependency>
+ <groupId>commons-discovery</groupId>
+ <artifactId>commons-discovery</artifactId>
+ <version>0.2</version>
+ <scope>compile</scope>
+ </dependency>
</dependencies>
<properties>
<pluginClassName>net.sourceforge.squirrel_sql.plugins.sqlval.SQLValidatorPlugin</pluginClassName>
@@ -118,7 +125,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
- </plugin>
+ </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|