Author: kwright Date: Fri Aug 4 09:53:22 2017 New Revision: 1804088 URL: http://svn.apache.org/viewvc?rev=1804088&view=rev Log: Fix for CONNECTORS-1447.
Modified: manifoldcf/trunk/CHANGES.txt manifoldcf/trunk/build.xml manifoldcf/trunk/connectors/activedirectory/pom.xml manifoldcf/trunk/connectors/alfresco-webscript/pom.xml manifoldcf/trunk/connectors/alfresco/pom.xml manifoldcf/trunk/connectors/amazoncloudsearch/pom.xml manifoldcf/trunk/connectors/amazons3/pom.xml manifoldcf/trunk/connectors/cmis/pom.xml manifoldcf/trunk/connectors/contentlimiter/pom.xml manifoldcf/trunk/connectors/documentfilter/pom.xml manifoldcf/trunk/connectors/dropbox/pom.xml manifoldcf/trunk/connectors/elasticsearch/pom.xml manifoldcf/trunk/connectors/email/pom.xml manifoldcf/trunk/connectors/filesystem/pom.xml manifoldcf/trunk/connectors/forcedmetadata/pom.xml manifoldcf/trunk/connectors/generic/pom.xml manifoldcf/trunk/connectors/googledrive/pom.xml manifoldcf/trunk/connectors/gridfs/pom.xml manifoldcf/trunk/connectors/gts/pom.xml manifoldcf/trunk/connectors/hdfs/pom.xml manifoldcf/trunk/connectors/jcifs/pom.xml manifoldcf/trunk/connectors/jdbc/pom.xml manifoldcf/trunk/connectors/jira/pom.xml manifoldcf/trunk/connectors/kafka/pom.xml manifoldcf/trunk/connectors/ldap/pom.xml manifoldcf/trunk/connectors/nullauthority/pom.xml manifoldcf/trunk/connectors/nulloutput/pom.xml manifoldcf/trunk/connectors/nulltransformation/pom.xml manifoldcf/trunk/connectors/opennlp/pom.xml manifoldcf/trunk/connectors/opensearchserver/pom.xml manifoldcf/trunk/connectors/regexpmapper/pom.xml manifoldcf/trunk/connectors/rss/pom.xml manifoldcf/trunk/connectors/searchblox/pom.xml manifoldcf/trunk/connectors/sharepoint/pom.xml manifoldcf/trunk/connectors/slack/pom.xml manifoldcf/trunk/connectors/solr/pom.xml manifoldcf/trunk/connectors/tika/pom.xml manifoldcf/trunk/connectors/tikaservice/pom.xml manifoldcf/trunk/connectors/webcrawler/pom.xml manifoldcf/trunk/connectors/wiki/pom.xml manifoldcf/trunk/framework/agents/pom.xml manifoldcf/trunk/framework/api-service/pom.xml manifoldcf/trunk/framework/authority-service/pom.xml manifoldcf/trunk/framework/combined-service/pom.xml manifoldcf/trunk/framework/connector-common/pom.xml manifoldcf/trunk/framework/core/pom.xml manifoldcf/trunk/framework/crawler-ui/pom.xml manifoldcf/trunk/framework/jetty-runner/pom.xml manifoldcf/trunk/framework/pull-agent/pom.xml manifoldcf/trunk/pom.xml Modified: manifoldcf/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/manifoldcf/trunk/CHANGES.txt?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/CHANGES.txt (original) +++ manifoldcf/trunk/CHANGES.txt Fri Aug 4 09:53:22 2017 @@ -3,6 +3,11 @@ $Id$ ======================= 2.8-dev ===================== +CONNECTORS-1447: Update postgresql driver to the most current version. +This should allow error free operation with Postgresql versions back to +version 8. +(Karl Wright) + CONNECTORS-1446: Confluence connector's UI was broken; protocol selection was not working. (Ty Taylor, Karl Wright) Modified: manifoldcf/trunk/build.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/build.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/build.xml (original) +++ manifoldcf/trunk/build.xml Fri Aug 4 09:53:22 2017 @@ -37,7 +37,7 @@ <property name="xerces.version" value="2.10.0"/> <property name="zookeeper.version" value="3.4.8"/> <property name="mongodb.version" value="2.11.3"/> - <property name="postgresql.version" value="9.1-901.jdbc4"/> + <property name="postgresql.version" value="42.1.3"/> <property name="axis.version" value="1.4"/> <property name="saaj-api.version" value="1.3"/> <property name="saaj-impl.version" value="1.3.3"/> @@ -1018,7 +1018,7 @@ Use Apache Forrest version forrest-0.9-d <target name="download-postgresql"> <mkdir dir="lib"/> <antcall target="download-via-maven"> - <param name="project-path" value="postgresql"/> + <param name="project-path" value="org/postgresql"/> <param name="artifact-version" value="${postgresql.version}"/> <param name="target" value="lib"/> <param name="artifact-name" value="postgresql"/> Modified: manifoldcf/trunk/connectors/activedirectory/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/activedirectory/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/activedirectory/pom.xml (original) +++ manifoldcf/trunk/connectors/activedirectory/pom.xml Fri Aug 4 09:53:22 2017 @@ -237,7 +237,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/alfresco-webscript/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/alfresco-webscript/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/alfresco-webscript/pom.xml (original) +++ manifoldcf/trunk/connectors/alfresco-webscript/pom.xml Fri Aug 4 09:53:22 2017 @@ -279,7 +279,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/alfresco/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/alfresco/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/alfresco/pom.xml (original) +++ manifoldcf/trunk/connectors/alfresco/pom.xml Fri Aug 4 09:53:22 2017 @@ -368,7 +368,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/amazoncloudsearch/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/amazoncloudsearch/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/amazoncloudsearch/pom.xml (original) +++ manifoldcf/trunk/connectors/amazoncloudsearch/pom.xml Fri Aug 4 09:53:22 2017 @@ -263,7 +263,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/amazons3/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/amazons3/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/amazons3/pom.xml (original) +++ manifoldcf/trunk/connectors/amazons3/pom.xml Fri Aug 4 09:53:22 2017 @@ -259,7 +259,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/cmis/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/cmis/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/cmis/pom.xml (original) +++ manifoldcf/trunk/connectors/cmis/pom.xml Fri Aug 4 09:53:22 2017 @@ -313,7 +313,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/contentlimiter/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/contentlimiter/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/contentlimiter/pom.xml (original) +++ manifoldcf/trunk/connectors/contentlimiter/pom.xml Fri Aug 4 09:53:22 2017 @@ -237,7 +237,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/documentfilter/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/documentfilter/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/documentfilter/pom.xml (original) +++ manifoldcf/trunk/connectors/documentfilter/pom.xml Fri Aug 4 09:53:22 2017 @@ -237,7 +237,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/dropbox/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/dropbox/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/dropbox/pom.xml (original) +++ manifoldcf/trunk/connectors/dropbox/pom.xml Fri Aug 4 09:53:22 2017 @@ -261,7 +261,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/elasticsearch/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/elasticsearch/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/elasticsearch/pom.xml (original) +++ manifoldcf/trunk/connectors/elasticsearch/pom.xml Fri Aug 4 09:53:22 2017 @@ -272,7 +272,7 @@ <scope>test</scope> </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/email/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/email/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/email/pom.xml (original) +++ manifoldcf/trunk/connectors/email/pom.xml Fri Aug 4 09:53:22 2017 @@ -235,7 +235,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/filesystem/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/filesystem/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/filesystem/pom.xml (original) +++ manifoldcf/trunk/connectors/filesystem/pom.xml Fri Aug 4 09:53:22 2017 @@ -243,7 +243,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/forcedmetadata/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/forcedmetadata/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/forcedmetadata/pom.xml (original) +++ manifoldcf/trunk/connectors/forcedmetadata/pom.xml Fri Aug 4 09:53:22 2017 @@ -230,7 +230,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/generic/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/generic/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/generic/pom.xml (original) +++ manifoldcf/trunk/connectors/generic/pom.xml Fri Aug 4 09:53:22 2017 @@ -242,7 +242,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/googledrive/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/googledrive/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/googledrive/pom.xml (original) +++ manifoldcf/trunk/connectors/googledrive/pom.xml Fri Aug 4 09:53:22 2017 @@ -256,7 +256,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/gridfs/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/gridfs/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/gridfs/pom.xml (original) +++ manifoldcf/trunk/connectors/gridfs/pom.xml Fri Aug 4 09:53:22 2017 @@ -116,7 +116,7 @@ <scope>test</scope> </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/gts/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/gts/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/gts/pom.xml (original) +++ manifoldcf/trunk/connectors/gts/pom.xml Fri Aug 4 09:53:22 2017 @@ -240,7 +240,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/hdfs/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/hdfs/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/hdfs/pom.xml (original) +++ manifoldcf/trunk/connectors/hdfs/pom.xml Fri Aug 4 09:53:22 2017 @@ -236,7 +236,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/jcifs/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/jcifs/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/jcifs/pom.xml (original) +++ manifoldcf/trunk/connectors/jcifs/pom.xml Fri Aug 4 09:53:22 2017 @@ -242,7 +242,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/jdbc/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/jdbc/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/jdbc/pom.xml (original) +++ manifoldcf/trunk/connectors/jdbc/pom.xml Fri Aug 4 09:53:22 2017 @@ -235,7 +235,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/jira/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/jira/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/jira/pom.xml (original) +++ manifoldcf/trunk/connectors/jira/pom.xml Fri Aug 4 09:53:22 2017 @@ -256,7 +256,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/kafka/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/kafka/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/kafka/pom.xml (original) +++ manifoldcf/trunk/connectors/kafka/pom.xml Fri Aug 4 09:53:22 2017 @@ -286,7 +286,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/ldap/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/ldap/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/ldap/pom.xml (original) +++ manifoldcf/trunk/connectors/ldap/pom.xml Fri Aug 4 09:53:22 2017 @@ -235,7 +235,7 @@ <scope>test</scope> </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/nullauthority/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/nullauthority/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/nullauthority/pom.xml (original) +++ manifoldcf/trunk/connectors/nullauthority/pom.xml Fri Aug 4 09:53:22 2017 @@ -235,7 +235,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/nulloutput/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/nulloutput/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/nulloutput/pom.xml (original) +++ manifoldcf/trunk/connectors/nulloutput/pom.xml Fri Aug 4 09:53:22 2017 @@ -230,7 +230,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/nulltransformation/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/nulltransformation/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/nulltransformation/pom.xml (original) +++ manifoldcf/trunk/connectors/nulltransformation/pom.xml Fri Aug 4 09:53:22 2017 @@ -230,7 +230,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/opennlp/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/opennlp/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/opennlp/pom.xml (original) +++ manifoldcf/trunk/connectors/opennlp/pom.xml Fri Aug 4 09:53:22 2017 @@ -241,7 +241,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/opensearchserver/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/opensearchserver/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/opensearchserver/pom.xml (original) +++ manifoldcf/trunk/connectors/opensearchserver/pom.xml Fri Aug 4 09:53:22 2017 @@ -260,7 +260,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/regexpmapper/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/regexpmapper/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/regexpmapper/pom.xml (original) +++ manifoldcf/trunk/connectors/regexpmapper/pom.xml Fri Aug 4 09:53:22 2017 @@ -236,7 +236,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/rss/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/rss/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/rss/pom.xml (original) +++ manifoldcf/trunk/connectors/rss/pom.xml Fri Aug 4 09:53:22 2017 @@ -263,7 +263,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/searchblox/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/searchblox/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/searchblox/pom.xml (original) +++ manifoldcf/trunk/connectors/searchblox/pom.xml Fri Aug 4 09:53:22 2017 @@ -356,7 +356,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/sharepoint/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/sharepoint/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/sharepoint/pom.xml (original) +++ manifoldcf/trunk/connectors/sharepoint/pom.xml Fri Aug 4 09:53:22 2017 @@ -341,7 +341,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/slack/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/slack/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/slack/pom.xml (original) +++ manifoldcf/trunk/connectors/slack/pom.xml Fri Aug 4 09:53:22 2017 @@ -235,7 +235,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/solr/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/solr/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/solr/pom.xml (original) +++ manifoldcf/trunk/connectors/solr/pom.xml Fri Aug 4 09:53:22 2017 @@ -291,7 +291,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/tika/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/tika/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/tika/pom.xml (original) +++ manifoldcf/trunk/connectors/tika/pom.xml Fri Aug 4 09:53:22 2017 @@ -257,7 +257,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/tikaservice/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/tikaservice/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/tikaservice/pom.xml (original) +++ manifoldcf/trunk/connectors/tikaservice/pom.xml Fri Aug 4 09:53:22 2017 @@ -257,7 +257,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/webcrawler/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/webcrawler/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/webcrawler/pom.xml (original) +++ manifoldcf/trunk/connectors/webcrawler/pom.xml Fri Aug 4 09:53:22 2017 @@ -261,7 +261,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/connectors/wiki/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/connectors/wiki/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/connectors/wiki/pom.xml (original) +++ manifoldcf/trunk/connectors/wiki/pom.xml Fri Aug 4 09:53:22 2017 @@ -255,7 +255,7 @@ </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/framework/agents/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/agents/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/framework/agents/pom.xml (original) +++ manifoldcf/trunk/framework/agents/pom.xml Fri Aug 4 09:53:22 2017 @@ -80,7 +80,7 @@ <scope>test</scope> </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/framework/api-service/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/api-service/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/framework/api-service/pom.xml (original) +++ manifoldcf/trunk/framework/api-service/pom.xml Fri Aug 4 09:53:22 2017 @@ -75,7 +75,7 @@ <scope>runtime</scope> </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>runtime</scope> Modified: manifoldcf/trunk/framework/authority-service/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/authority-service/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/framework/authority-service/pom.xml (original) +++ manifoldcf/trunk/framework/authority-service/pom.xml Fri Aug 4 09:53:22 2017 @@ -75,7 +75,7 @@ <scope>runtime</scope> </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>runtime</scope> Modified: manifoldcf/trunk/framework/combined-service/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/combined-service/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/framework/combined-service/pom.xml (original) +++ manifoldcf/trunk/framework/combined-service/pom.xml Fri Aug 4 09:53:22 2017 @@ -98,7 +98,7 @@ <scope>runtime</scope> </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>runtime</scope> Modified: manifoldcf/trunk/framework/connector-common/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/connector-common/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/framework/connector-common/pom.xml (original) +++ manifoldcf/trunk/framework/connector-common/pom.xml Fri Aug 4 09:53:22 2017 @@ -170,7 +170,7 @@ <scope>test</scope> </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/framework/core/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/framework/core/pom.xml (original) +++ manifoldcf/trunk/framework/core/pom.xml Fri Aug 4 09:53:22 2017 @@ -210,7 +210,7 @@ <scope>test</scope> </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/framework/crawler-ui/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/crawler-ui/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/framework/crawler-ui/pom.xml (original) +++ manifoldcf/trunk/framework/crawler-ui/pom.xml Fri Aug 4 09:53:22 2017 @@ -132,7 +132,7 @@ <scope>runtime</scope> </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>runtime</scope> Modified: manifoldcf/trunk/framework/jetty-runner/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/jetty-runner/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/framework/jetty-runner/pom.xml (original) +++ manifoldcf/trunk/framework/jetty-runner/pom.xml Fri Aug 4 09:53:22 2017 @@ -367,7 +367,7 @@ <scope>runtime</scope> </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>runtime</scope> Modified: manifoldcf/trunk/framework/pull-agent/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/pull-agent/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/framework/pull-agent/pom.xml (original) +++ manifoldcf/trunk/framework/pull-agent/pom.xml Fri Aug 4 09:53:22 2017 @@ -179,7 +179,7 @@ <scope>test</scope> </dependency> <dependency> - <groupId>postgresql</groupId> + <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>${postgresql.version}</version> <scope>test</scope> Modified: manifoldcf/trunk/pom.xml URL: http://svn.apache.org/viewvc/manifoldcf/trunk/pom.xml?rev=1804088&r1=1804087&r2=1804088&view=diff ============================================================================== --- manifoldcf/trunk/pom.xml (original) +++ manifoldcf/trunk/pom.xml Fri Aug 4 09:53:22 2017 @@ -45,7 +45,7 @@ <selenium.version>3.3.1</selenium.version> <mockito.version>1.9.5</mockito.version> <wiremock.version>2.5.1</wiremock.version> - <postgresql.version>9.1-901.jdbc4</postgresql.version> + <postgresql.version>42.1.3</postgresql.version> <mysql.version>5.1.33</mysql.version> <hsqldb.version>2.3.2</hsqldb.version> <jetty.version>9.2.3.v20140905</jetty.version>