Skip to content

Commit 78b2f90

Browse files
author
msm
committed
Update pom file to use jwat 1.0.1 instead of 1.0.0.
Implement Deduplicator's writeRevisitRecord method which is responsible for modifying every response record that has copy number > 1 to a revisit record.
1 parent 63d73d4 commit 78b2f90

File tree

2 files changed

+227
-153
lines changed

2 files changed

+227
-153
lines changed

pom.xml

Lines changed: 24 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -17,51 +17,46 @@
1717

1818
<dependency>
1919
<groupId>org.jwat</groupId>
20-
<artifactId>jwat-warc</artifactId>
21-
<version>1.0.0</version>
22-
<type>jar</type>
20+
<artifactId>jwat-common</artifactId>
21+
<version>1.0.1</version>
2322
</dependency>
24-
23+
2524
<dependency>
2625
<groupId>org.jwat</groupId>
27-
<artifactId>jwat-arc</artifactId>
28-
<version>1.0.0</version>
26+
<artifactId>jwat-gzip</artifactId>
27+
<version>1.0.1</version>
2928
</dependency>
30-
29+
3130
<dependency>
3231
<groupId>org.jwat</groupId>
33-
<artifactId>jwat-gzip</artifactId>
34-
<version>1.0.0</version>
32+
<artifactId>jwat-arc</artifactId>
33+
<version>1.0.1</version>
3534
</dependency>
3635

3736
<dependency>
3837
<groupId>org.jwat</groupId>
39-
<artifactId>jwat-common</artifactId>
40-
<version>1.0.0</version>
38+
<artifactId>jwat-warc</artifactId>
39+
<version>1.0.1</version>
4140
</dependency>
4241

42+
<dependency>
43+
<groupId>org.jwat</groupId>
44+
<artifactId>jwat-archive-common</artifactId>
45+
<version>1.0.1</version>
46+
</dependency>
47+
4348
<dependency>
4449
<groupId>org.jwat</groupId>
4550
<artifactId>jwat-distribution</artifactId>
46-
<version>1.0.0</version>
51+
<version>1.0.1</version>
52+
</dependency>
53+
54+
<dependency>
55+
<groupId>org.bouncycastle</groupId>
56+
<artifactId>bcprov-jdk15</artifactId>
57+
<version>1.45</version>
58+
<scope>test</scope>
4759
</dependency>
4860

4961
</dependencies>
50-
<build>
51-
<plugins>
52-
<plugin>
53-
<artifactId>maven-assembly-plugin</artifactId>
54-
<configuration>
55-
<archive>
56-
<manifest>
57-
<mainClass>org.bibalex.warcrefs.Warcrefs</mainClass>
58-
</manifest>
59-
</archive>
60-
<descriptorRefs>
61-
<descriptorRef>jar-with-dependencies</descriptorRef>
62-
</descriptorRefs>
63-
</configuration>
64-
</plugin>
65-
</plugins>
66-
</build>
6762
</project>

0 commit comments

Comments
 (0)