File tree Expand file tree Collapse file tree 19 files changed +81
-23
lines changed Expand file tree Collapse file tree 19 files changed +81
-23
lines changed Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.openpreservation.jhove</groupId >
7
7
<artifactId >jhove</artifactId >
8
- <version >1.32.0 </version >
8
+ <version >1.33.0-SNAPSHOT </version >
9
9
</parent >
10
10
11
11
<artifactId >jhove-apps</artifactId >
12
12
<packaging >jar</packaging >
13
- <version >1.32.0 </version >
13
+ <version >1.33.0-SNAPSHOT </version >
14
14
15
15
16
16
<name >JHOVE Applications</name >
60
60
<dependency >
61
61
<groupId >org.openpreservation.jhove</groupId >
62
62
<artifactId >jhove-core</artifactId >
63
- <version >1.32.0 </version >
63
+ <version >1.33.0-SNAPSHOT </version >
64
64
</dependency >
65
65
</dependencies >
66
66
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ testRoot=" test-root"
4
+ paramCandidateVersion=" "
5
+ paramBaselineVersion=" "
6
+ baselineRoot=" ${testRoot} /baselines"
7
+ candidateRoot=" ${testRoot} /candidates"
8
+ targetRoot=" ${testRoot} /targets"
9
+ # Check the passed params to avoid disapointment
10
+ checkParams () {
11
+ OPTIND=1 # Reset in case getopts previously used
12
+
13
+ while getopts " h?b:c:" opt; do # Grab the options
14
+ case " $opt " in
15
+ h|\? )
16
+ showHelp
17
+ exit 0
18
+ ;;
19
+ b) paramBaselineVersion=$OPTARG
20
+ ;;
21
+ c) paramCandidateVersion=$OPTARG
22
+ ;;
23
+ esac
24
+ done
25
+
26
+ if [ -z " $paramBaselineVersion " ] || [ -z " $paramCandidateVersion " ]
27
+ then
28
+ showHelp
29
+ exit 0
30
+ fi
31
+
32
+ baselineRoot=" ${baselineRoot} /${paramBaselineVersion} "
33
+ candidateRoot=" ${candidateRoot} /${paramCandidateVersion} "
34
+ targetRoot=" ${targetRoot} /${paramCandidateVersion} "
35
+ }
36
+
37
+ # Show usage message
38
+ showHelp () {
39
+ echo " usage: create-target [-b <baselineVersion>] [-c <candidateVersion>] [-h|?]"
40
+ echo " "
41
+ echo " baselineVersion : The version number id for the baseline data."
42
+ echo " candidateVersion : The version number id for the candidate data."
43
+ echo " "
44
+ echo " -h|? : This message."
45
+ }
46
+
47
+ # Execution starts here
48
+ checkParams " $@ " ;
49
+ if [[ -d " ${targetRoot} " ]]; then
50
+ echo " - removing existing baseline at ${targetRoot} ."
51
+ rm -rf " ${targetRoot} "
52
+ fi
53
+
54
+ echo " TEST BASELINE: Creating baseline"
55
+ # Simply copy baseline for now we're not making any changes
56
+ echo " - copying ${baselineRoot} baseline to ${targetRoot} "
57
+ cp -R " ${baselineRoot} " " ${targetRoot} "
58
+
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ TEST_BASELINES_ROOT="${TEST_ROOT}/baselines"
13
13
TEST_INSTALL_ROOT=" ${TEST_ROOT} /jhove"
14
14
CANDIDATE_ROOT=" ${TEST_ROOT} /candidates"
15
15
TARGET_ROOT=" ${TEST_ROOT} /targets"
16
- BASELINE_VERSION=1.30
16
+ BASELINE_VERSION=1.32
17
17
18
18
# Create the JHOVE test root if it doesn't exist
19
19
[[ -d " ${TEST_ROOT} " ]] || mkdir -p " ${TEST_ROOT} "
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.openpreservation.jhove</groupId >
7
7
<artifactId >jhove</artifactId >
8
- <version >1.32.0 </version >
8
+ <version >1.33.0-SNAPSHOT </version >
9
9
</parent >
10
10
11
11
<artifactId >jhove-core</artifactId >
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >org.openpreservation.jhove</groupId >
5
5
<artifactId >jhove</artifactId >
6
- <version >1.32.0 </version >
6
+ <version >1.33.0-SNAPSHOT </version >
7
7
</parent >
8
8
9
9
<artifactId >jhove-ext-modules</artifactId >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.openpreservation.jhove</groupId >
7
7
<artifactId >jhove</artifactId >
8
- <version >1.32.0 </version >
8
+ <version >1.33.0-SNAPSHOT </version >
9
9
</parent >
10
10
11
11
<artifactId >jhove-installer</artifactId >
12
- <version >1.32.0 </version >
12
+ <version >1.33.0-SNAPSHOT </version >
13
13
<name >JHOVE Installer</name >
14
14
<description >Maven-built IzPack installer for JHOVE.</description >
15
15
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >org.openpreservation.jhove.modules</groupId >
5
5
<artifactId >jhove-modules</artifactId >
6
- <version >1.32.0 </version >
6
+ <version >1.33.0-SNAPSHOT </version >
7
7
</parent >
8
8
<artifactId >aiff-hul</artifactId >
9
9
<version >1.6.2</version >
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >org.openpreservation.jhove.modules</groupId >
5
5
<artifactId >jhove-modules</artifactId >
6
- <version >1.32.0 </version >
6
+ <version >1.33.0-SNAPSHOT </version >
7
7
</parent >
8
8
<artifactId >ascii-hul</artifactId >
9
9
<version >1.4.2</version >
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >org.openpreservation.jhove.modules</groupId >
5
5
<artifactId >jhove-modules</artifactId >
6
- <version >1.32.0 </version >
6
+ <version >1.33.0-SNAPSHOT </version >
7
7
</parent >
8
8
<artifactId >gif-hul</artifactId >
9
9
<version >1.4.3</version >
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >org.openpreservation.jhove.modules</groupId >
5
5
<artifactId >jhove-modules</artifactId >
6
- <version >1.32.0 </version >
6
+ <version >1.33.0-SNAPSHOT </version >
7
7
</parent >
8
8
<artifactId >html-hul</artifactId >
9
9
<version >1.4.4</version >
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >org.openpreservation.jhove.modules</groupId >
5
5
<artifactId >jhove-modules</artifactId >
6
- <version >1.32.0 </version >
6
+ <version >1.33.0-SNAPSHOT </version >
7
7
</parent >
8
8
<artifactId >jpeg-hul</artifactId >
9
9
<version >1.5.4</version >
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >org.openpreservation.jhove.modules</groupId >
5
5
<artifactId >jhove-modules</artifactId >
6
- <version >1.32.0 </version >
6
+ <version >1.33.0-SNAPSHOT </version >
7
7
</parent >
8
8
<artifactId >jpeg2000-hul</artifactId >
9
9
<version >1.4.4</version >
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >org.openpreservation.jhove.modules</groupId >
5
5
<artifactId >jhove-modules</artifactId >
6
- <version >1.32.0 </version >
6
+ <version >1.33.0-SNAPSHOT </version >
7
7
</parent >
8
8
<artifactId >pdf-hul</artifactId >
9
9
<version >1.12.7</version >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.openpreservation.jhove</groupId >
7
7
<artifactId >jhove</artifactId >
8
- <version >1.32.0 </version >
8
+ <version >1.33.0-SNAPSHOT </version >
9
9
</parent >
10
10
11
11
<groupId >org.openpreservation.jhove.modules</groupId >
12
12
<artifactId >jhove-modules</artifactId >
13
13
<packaging >pom</packaging >
14
- <version >1.32.0 </version >
14
+ <version >1.33.0-SNAPSHOT </version >
15
15
<name >JHOVE Validation Modules</name >
16
16
<description >The JHOVE HUL validation modules.</description >
17
17
18
18
<dependencies >
19
19
<dependency >
20
20
<groupId >org.openpreservation.jhove</groupId >
21
21
<artifactId >jhove-core</artifactId >
22
- <version >1.32.0 </version >
22
+ <version >1.33.0-SNAPSHOT </version >
23
23
</dependency >
24
24
<dependency >
25
25
<groupId >org.junit.vintage</groupId >
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >org.openpreservation.jhove.modules</groupId >
5
5
<artifactId >jhove-modules</artifactId >
6
- <version >1.32.0 </version >
6
+ <version >1.33.0-SNAPSHOT </version >
7
7
</parent >
8
8
<artifactId >tiff-hul</artifactId >
9
9
<version >1.9.5</version >
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >org.openpreservation.jhove.modules</groupId >
5
5
<artifactId >jhove-modules</artifactId >
6
- <version >1.32.0 </version >
6
+ <version >1.33.0-SNAPSHOT </version >
7
7
</parent >
8
8
<artifactId >utf8-hul</artifactId >
9
9
<version >1.7.4</version >
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >org.openpreservation.jhove.modules</groupId >
5
5
<artifactId >jhove-modules</artifactId >
6
- <version >1.32.0 </version >
6
+ <version >1.33.0-SNAPSHOT </version >
7
7
</parent >
8
8
<artifactId >wave-hul</artifactId >
9
9
<version >1.8.3</version >
Original file line number Diff line number Diff line change 3
3
<parent >
4
4
<groupId >org.openpreservation.jhove.modules</groupId >
5
5
<artifactId >jhove-modules</artifactId >
6
- <version >1.32.0 </version >
6
+ <version >1.33.0-SNAPSHOT </version >
7
7
</parent >
8
8
<artifactId >xml-hul</artifactId >
9
9
<version >1.5.5</version >
Original file line number Diff line number Diff line change 10
10
11
11
<groupId >org.openpreservation.jhove</groupId >
12
12
<artifactId >jhove</artifactId >
13
- <version >1.32.0 </version >
13
+ <version >1.33.0-SNAPSHOT </version >
14
14
<packaging >pom</packaging >
15
15
16
16
<name >JHOVE - JSTOR/Harvard Object Validation Environment</name >
You can’t perform that action at this time.
0 commit comments