This is an automated email from the ASF dual-hosted git repository. piergiorgio pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/manifoldcf.git
commit f85df62a6eb3f5e441de6f5d5eac4a38d49825fb Author: Piergiorgio Lucidi <[email protected]> AuthorDate: Thu Nov 28 23:03:39 2024 +0100 Merged and fixed the pull request #159 by Guylaine Bassett --- CHANGES.txt | 3 +++ connectors/csv/pom.xml | 2 +- .../authorities/authorities/newgeneric/NewGenericConfig.java | 2 +- connectors/newgeneric/pom.xml | 4 ++-- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 0011407f0..281456fa4 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -26,6 +26,9 @@ CONNECTORS-1748: Add "User-Agent platform" option for crawling mobile websites CONNECTORS-1758: Google drive api upgrade (Douglas C. R. Paes) +CONNECTORS-1759: A new generic authority connector for JSON data exchange format +(Guylaine Bassett) + ======================= Release 2.27 ===================== CONNECTORS-1755: Copyright footer must be updated diff --git a/connectors/csv/pom.xml b/connectors/csv/pom.xml index 111145568..f8ce5c434 100755 --- a/connectors/csv/pom.xml +++ b/connectors/csv/pom.xml @@ -1,3 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with @@ -15,7 +16,6 @@ limitations under the License. --> -<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> diff --git a/connectors/newgeneric/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/newgeneric/NewGenericConfig.java b/connectors/newgeneric/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/newgeneric/NewGenericConfig.java index 4afe08f0f..9160042c9 100755 --- a/connectors/newgeneric/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/newgeneric/NewGenericConfig.java +++ b/connectors/newgeneric/connector/src/main/java/org/apache/manifoldcf/authorities/authorities/newgeneric/NewGenericConfig.java @@ -6,7 +6,7 @@ public class NewGenericConfig { public static final String PARAM_ADDRESS = "newGenericAddress"; public static final String PARAM_CONNECTIONTIMEOUT = "connectionTimeout"; public static final String PARAM_SOCKETTIMEOUT = "socketTimeout"; - public static final String ADDRESS_DEFAULT = "http://datafari.com"; + public static final String ADDRESS_DEFAULT = "http://your.json.service.com"; public static final String CONNECTIONTIMEOUT_DEFAULT = "60000"; public static final String SOCKETTIMEOUT_DEFAULT = "180000"; public static final String PARAM_LOGIN = "login"; diff --git a/connectors/newgeneric/pom.xml b/connectors/newgeneric/pom.xml index bd4b707a2..70ae1cfa3 100644 --- a/connectors/newgeneric/pom.xml +++ b/connectors/newgeneric/pom.xml @@ -92,7 +92,7 @@ <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> - <version>2.7</version> + <version>2.4</version> <scope>provided</scope> </dependency> @@ -100,7 +100,7 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> - <version>3.6</version> + <version>3.12.0</version> <scope>provided</scope> </dependency>
