diff --git a/jhove-apps/pom.xml b/jhove-apps/pom.xml
index 9c58bf563..801e7947c 100644
--- a/jhove-apps/pom.xml
+++ b/jhove-apps/pom.xml
@@ -5,12 +5,12 @@
org.openpreservation.jhove
jhove
- 1.32.0
+ 1.33.0-SNAPSHOT
jhove-apps
jar
- 1.32.0
+ 1.33.0-SNAPSHOT
JHOVE Applications
@@ -60,7 +60,7 @@
org.openpreservation.jhove
jhove-core
- 1.32.0
+ 1.33.0-SNAPSHOT
diff --git a/jhove-bbt/scripts/create-1.33-target.sh b/jhove-bbt/scripts/create-1.33-target.sh
new file mode 100755
index 000000000..0191c69e3
--- /dev/null
+++ b/jhove-bbt/scripts/create-1.33-target.sh
@@ -0,0 +1,58 @@
+#!/usr/bin/env bash
+
+testRoot="test-root"
+paramCandidateVersion=""
+paramBaselineVersion=""
+baselineRoot="${testRoot}/baselines"
+candidateRoot="${testRoot}/candidates"
+targetRoot="${testRoot}/targets"
+# Check the passed params to avoid disapointment
+checkParams () {
+ OPTIND=1 # Reset in case getopts previously used
+
+ while getopts "h?b:c:" opt; do # Grab the options
+ case "$opt" in
+ h|\?)
+ showHelp
+ exit 0
+ ;;
+ b) paramBaselineVersion=$OPTARG
+ ;;
+ c) paramCandidateVersion=$OPTARG
+ ;;
+ esac
+ done
+
+ if [ -z "$paramBaselineVersion" ] || [ -z "$paramCandidateVersion" ]
+ then
+ showHelp
+ exit 0
+ fi
+
+ baselineRoot="${baselineRoot}/${paramBaselineVersion}"
+ candidateRoot="${candidateRoot}/${paramCandidateVersion}"
+ targetRoot="${targetRoot}/${paramCandidateVersion}"
+}
+
+# Show usage message
+showHelp() {
+ echo "usage: create-target [-b ] [-c ] [-h|?]"
+ echo ""
+ echo " baselineVersion : The version number id for the baseline data."
+ echo " candidateVersion : The version number id for the candidate data."
+ echo ""
+ echo " -h|? : This message."
+}
+
+# Execution starts here
+checkParams "$@";
+if [[ -d "${targetRoot}" ]]; then
+ echo " - removing existing baseline at ${targetRoot}."
+ rm -rf "${targetRoot}"
+fi
+
+echo "TEST BASELINE: Creating baseline"
+# Simply copy baseline for now we're not making any changes
+echo " - copying ${baselineRoot} baseline to ${targetRoot}"
+cp -R "${baselineRoot}" "${targetRoot}"
+
diff --git a/jhove-bbt/scripts/travis-test.sh b/jhove-bbt/scripts/travis-test.sh
index c2ee948d6..c720bd3a7 100755
--- a/jhove-bbt/scripts/travis-test.sh
+++ b/jhove-bbt/scripts/travis-test.sh
@@ -13,7 +13,7 @@ TEST_BASELINES_ROOT="${TEST_ROOT}/baselines"
TEST_INSTALL_ROOT="${TEST_ROOT}/jhove"
CANDIDATE_ROOT="${TEST_ROOT}/candidates"
TARGET_ROOT="${TEST_ROOT}/targets"
-BASELINE_VERSION=1.30
+BASELINE_VERSION=1.32
# Create the JHOVE test root if it doesn't exist
[[ -d "${TEST_ROOT}" ]] || mkdir -p "${TEST_ROOT}"
diff --git a/jhove-core/pom.xml b/jhove-core/pom.xml
index 99ff0aa48..fe59f00d8 100644
--- a/jhove-core/pom.xml
+++ b/jhove-core/pom.xml
@@ -5,7 +5,7 @@
org.openpreservation.jhove
jhove
- 1.32.0
+ 1.33.0-SNAPSHOT
jhove-core
diff --git a/jhove-ext-modules/pom.xml b/jhove-ext-modules/pom.xml
index eadb59833..33971daf9 100644
--- a/jhove-ext-modules/pom.xml
+++ b/jhove-ext-modules/pom.xml
@@ -3,7 +3,7 @@
org.openpreservation.jhove
jhove
- 1.32.0
+ 1.33.0-SNAPSHOT
jhove-ext-modules
diff --git a/jhove-installer/pom.xml b/jhove-installer/pom.xml
index b40d61100..1c50566bc 100644
--- a/jhove-installer/pom.xml
+++ b/jhove-installer/pom.xml
@@ -5,11 +5,11 @@
org.openpreservation.jhove
jhove
- 1.32.0
+ 1.33.0-SNAPSHOT
jhove-installer
- 1.32.0
+ 1.33.0-SNAPSHOT
JHOVE Installer
Maven-built IzPack installer for JHOVE.
diff --git a/jhove-modules/aiff-hul/pom.xml b/jhove-modules/aiff-hul/pom.xml
index 4ce36374c..d3bd9d81f 100644
--- a/jhove-modules/aiff-hul/pom.xml
+++ b/jhove-modules/aiff-hul/pom.xml
@@ -3,7 +3,7 @@
org.openpreservation.jhove.modules
jhove-modules
- 1.32.0
+ 1.33.0-SNAPSHOT
aiff-hul
1.6.2
diff --git a/jhove-modules/ascii-hul/pom.xml b/jhove-modules/ascii-hul/pom.xml
index 98de906a1..79c54b243 100644
--- a/jhove-modules/ascii-hul/pom.xml
+++ b/jhove-modules/ascii-hul/pom.xml
@@ -3,7 +3,7 @@
org.openpreservation.jhove.modules
jhove-modules
- 1.32.0
+ 1.33.0-SNAPSHOT
ascii-hul
1.4.2
diff --git a/jhove-modules/gif-hul/pom.xml b/jhove-modules/gif-hul/pom.xml
index e94240edf..704eaaeb5 100644
--- a/jhove-modules/gif-hul/pom.xml
+++ b/jhove-modules/gif-hul/pom.xml
@@ -3,7 +3,7 @@
org.openpreservation.jhove.modules
jhove-modules
- 1.32.0
+ 1.33.0-SNAPSHOT
gif-hul
1.4.3
diff --git a/jhove-modules/html-hul/pom.xml b/jhove-modules/html-hul/pom.xml
index fcc4386f7..3d0b54ddf 100644
--- a/jhove-modules/html-hul/pom.xml
+++ b/jhove-modules/html-hul/pom.xml
@@ -3,7 +3,7 @@
org.openpreservation.jhove.modules
jhove-modules
- 1.32.0
+ 1.33.0-SNAPSHOT
html-hul
1.4.4
diff --git a/jhove-modules/jpeg-hul/pom.xml b/jhove-modules/jpeg-hul/pom.xml
index ba36a389b..66603cf86 100644
--- a/jhove-modules/jpeg-hul/pom.xml
+++ b/jhove-modules/jpeg-hul/pom.xml
@@ -3,7 +3,7 @@
org.openpreservation.jhove.modules
jhove-modules
- 1.32.0
+ 1.33.0-SNAPSHOT
jpeg-hul
1.5.4
diff --git a/jhove-modules/jpeg2000-hul/pom.xml b/jhove-modules/jpeg2000-hul/pom.xml
index 98329b3e4..0515d0559 100644
--- a/jhove-modules/jpeg2000-hul/pom.xml
+++ b/jhove-modules/jpeg2000-hul/pom.xml
@@ -3,7 +3,7 @@
org.openpreservation.jhove.modules
jhove-modules
- 1.32.0
+ 1.33.0-SNAPSHOT
jpeg2000-hul
1.4.4
diff --git a/jhove-modules/pdf-hul/pom.xml b/jhove-modules/pdf-hul/pom.xml
index c0b07d680..44e5cf934 100644
--- a/jhove-modules/pdf-hul/pom.xml
+++ b/jhove-modules/pdf-hul/pom.xml
@@ -3,7 +3,7 @@
org.openpreservation.jhove.modules
jhove-modules
- 1.32.0
+ 1.33.0-SNAPSHOT
pdf-hul
1.12.7
diff --git a/jhove-modules/pom.xml b/jhove-modules/pom.xml
index f99ae55ed..cdcc2340d 100644
--- a/jhove-modules/pom.xml
+++ b/jhove-modules/pom.xml
@@ -5,13 +5,13 @@
org.openpreservation.jhove
jhove
- 1.32.0
+ 1.33.0-SNAPSHOT
org.openpreservation.jhove.modules
jhove-modules
pom
- 1.32.0
+ 1.33.0-SNAPSHOT
JHOVE Validation Modules
The JHOVE HUL validation modules.
@@ -19,7 +19,7 @@
org.openpreservation.jhove
jhove-core
- 1.32.0
+ 1.33.0-SNAPSHOT
org.junit.vintage
diff --git a/jhove-modules/tiff-hul/pom.xml b/jhove-modules/tiff-hul/pom.xml
index e7db599ce..33300658d 100644
--- a/jhove-modules/tiff-hul/pom.xml
+++ b/jhove-modules/tiff-hul/pom.xml
@@ -3,7 +3,7 @@
org.openpreservation.jhove.modules
jhove-modules
- 1.32.0
+ 1.33.0-SNAPSHOT
tiff-hul
1.9.5
diff --git a/jhove-modules/utf8-hul/pom.xml b/jhove-modules/utf8-hul/pom.xml
index a433fca20..e82e908a7 100644
--- a/jhove-modules/utf8-hul/pom.xml
+++ b/jhove-modules/utf8-hul/pom.xml
@@ -3,7 +3,7 @@
org.openpreservation.jhove.modules
jhove-modules
- 1.32.0
+ 1.33.0-SNAPSHOT
utf8-hul
1.7.4
diff --git a/jhove-modules/wave-hul/pom.xml b/jhove-modules/wave-hul/pom.xml
index 2e0c6d5f8..0535dd8f4 100644
--- a/jhove-modules/wave-hul/pom.xml
+++ b/jhove-modules/wave-hul/pom.xml
@@ -3,7 +3,7 @@
org.openpreservation.jhove.modules
jhove-modules
- 1.32.0
+ 1.33.0-SNAPSHOT
wave-hul
1.8.3
diff --git a/jhove-modules/xml-hul/pom.xml b/jhove-modules/xml-hul/pom.xml
index c81146bc8..4519c9023 100644
--- a/jhove-modules/xml-hul/pom.xml
+++ b/jhove-modules/xml-hul/pom.xml
@@ -3,7 +3,7 @@
org.openpreservation.jhove.modules
jhove-modules
- 1.32.0
+ 1.33.0-SNAPSHOT
xml-hul
1.5.5
diff --git a/pom.xml b/pom.xml
index 27fe1579f..5d379b519 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,7 +10,7 @@
org.openpreservation.jhove
jhove
- 1.32.0
+ 1.33.0-SNAPSHOT
pom
JHOVE - JSTOR/Harvard Object Validation Environment