From fb2a024175080084a1f09f4e2e9ee60062bf9ed7 Mon Sep 17 00:00:00 2001 From: Pascal Essiembre Date: Mon, 29 Aug 2016 17:57:09 -0400 Subject: [PATCH] Now ships with new install script that automates copying of dependent libraries, taking into account possible version conflicts. Dependency updates: Norconex Committer Core 2.0.5, Norconex Commons Lang 1.12.0, Apache Commons Lang 2.6. --- norconex-committer-idol/pom.xml | 112 +++++++++--------- .../src/changes/changes.xml | 11 ++ .../src/main/assembly/NOTICE.txt | 4 +- .../src/main/assembly/dist.xml | 9 +- .../committer/idol/IdolCommitter.java | 3 +- .../src/main/javadoc/overview.html | 4 +- .../src/main/scripts/install.bat | 24 ++++ .../src/main/scripts/install.sh | 22 ++++ 8 files changed, 130 insertions(+), 59 deletions(-) create mode 100644 norconex-committer-idol/src/main/scripts/install.bat create mode 100644 norconex-committer-idol/src/main/scripts/install.sh diff --git a/norconex-committer-idol/pom.xml b/norconex-committer-idol/pom.xml index d4df2f6..6dd8536 100755 --- a/norconex-committer-idol/pom.xml +++ b/norconex-committer-idol/pom.xml @@ -1,5 +1,5 @@ UTF-8 UTF-8 @@ -30,7 +30,6 @@ 2013 - The Apache Software License, Version 2.0 @@ -62,7 +61,7 @@ com.norconex.collectors norconex-committer-core - 2.0.1 + 2.0.5 org.slf4j @@ -76,20 +75,20 @@ - HP (Autonomy) IDOL implementation of Norconex Committer. This library will help you commit documents to an Autonomy IDOL Server. - - Norconex Inc. - http://www.norconex.com - - - https://github.com/Norconex/committer-idol - scm:git:git@github.com:Norconex/committer-idol.git - scm:git:git@github.com:Norconex/committer-idol.git - - - GitHub - https://github.com/Norconex/committer-idol/issues - + + + + com.norconex.commons + norconex-commons-lang + 1.12.0 + + + commons-lang + commons-lang + 2.6 + + + @@ -219,12 +218,13 @@ ${basedir}/src/main/javadoc/overview.html protected - false + false 1.7 + false - http://www.norconex.com/product/commons-lang/apidocs/ - http://www.norconex.com/collectors/committer-core/latest/apidocs/ - http://commons.apache.org/proper/commons-configuration/apidocs/ + https://www.norconex.com/product/commons-lang/apidocs/ + https://www.norconex.com/collectors/committer-core/latest/apidocs/ + https://commons.apache.org/proper/commons-configuration/javadocs/v1.10/apidocs/ @@ -260,6 +260,14 @@ org.apache.maven.plugins maven-jar-plugin 2.6 + + + + true + true + + + @@ -340,6 +348,10 @@ org.apache.maven.plugins maven-project-info-reports-plugin 2.7 + + false + false + @@ -356,7 +368,7 @@
div.aboutLanguage .siteLink {font-size: 2em;} - Norconex IDOL Committer + Norconex IDOL Committer ]]>
@@ -374,15 +386,17 @@ Submit an Issue   |   - www.norconex.com + www.norconex.com ]]> protected - false + false + 1.7 + false - http://www.norconex.com/product/commons-lang/apidocs/ - http://www.norconex.com/collectors/committer-core/latest/apidocs/ - http://commons.apache.org/proper/commons-configuration/apidocs/ + https://www.norconex.com/product/commons-lang/apidocs/ + https://www.norconex.com/collectors/committer-core/latest/apidocs/ + https://commons.apache.org/proper/commons-configuration/javadocs/v1.10/apidocs/ @@ -398,35 +412,27 @@ + + + Norconex Inc. + https://www.norconex.com + + + https://github.com/Norconex/committer-idol + scm:git:git@github.com:Norconex/committer-idol.git + scm:git:git@github.com:Norconex/committer-idol.git + + + GitHub + https://github.com/Norconex/committer-idol/issues + - - jacobs - Stephen Jacob - stephen.jacob@norconex.com - Norconex Inc. - http://www.norconex.com - - developer - - -4 - - - fourniem - Martin Fournier - martin.fournier@norconex.com - Norconex Inc. - http://www.norconex.com - - developer - - -4 - essiembp Pascal Essiembre pascal.essiembre@norconex.com Norconex Inc. - http://www.norconex.com + https://www.norconex.com project leader developer @@ -434,5 +440,5 @@ -4 - http://norconex.com/collectors/committer-idol/ + https://www.norconex.com/collectors/committer-idol/ \ No newline at end of file diff --git a/norconex-committer-idol/src/changes/changes.xml b/norconex-committer-idol/src/changes/changes.xml index c001623..1567de9 100644 --- a/norconex-committer-idol/src/changes/changes.xml +++ b/norconex-committer-idol/src/changes/changes.xml @@ -7,6 +7,17 @@ + + + Now ships with new install script that automates copying of dependent + libraries, taking into account possible version conflicts. + + + Dependency updates: Norconex Committer Core 2.0.5, + Norconex Commons Lang 1.12.0, Apache Commons Lang 2.6. + + + Added Sonatype repository to pom.xml for snapshot releases. diff --git a/norconex-committer-idol/src/main/assembly/NOTICE.txt b/norconex-committer-idol/src/main/assembly/NOTICE.txt index 1b6cf3d..0a93c49 100644 --- a/norconex-committer-idol/src/main/assembly/NOTICE.txt +++ b/norconex-committer-idol/src/main/assembly/NOTICE.txt @@ -1,5 +1,5 @@ Norconex IDOL Committer -Copyright 2010-2014 Norconex Inc. +Copyright 2010-2016 Norconex Inc. General Information: ==================== @@ -8,7 +8,7 @@ For any inquiries about Norconex IDOL Committer, please contact Norconex Inc. at info@norconex.com. This product website and documentation is located at: -http://www.norconex.com/collectors/committer-idol +https://www.norconex.com/collectors/committer-idol Norconex licenses: ================== diff --git a/norconex-committer-idol/src/main/assembly/dist.xml b/norconex-committer-idol/src/main/assembly/dist.xml index f9460a8..3b2811e 100644 --- a/norconex-committer-idol/src/main/assembly/dist.xml +++ b/norconex-committer-idol/src/main/assembly/dist.xml @@ -1,5 +1,5 @@