jhove-ext-modules
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.openpreservation.jhove</groupId> <artifactId>jhove-ext-modules</artifactId> <version>1.34.0</version> </dependency>
<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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.openpreservation.jhove</groupId> <artifactId>jhove</artifactId> <version>1.34.0</version> </parent> <artifactId>jhove-ext-modules</artifactId> <name>JHOVE External Modules</name> <description>Third party validation modules for JHOVE.</description> <properties> <jwat.version>1.0.3</jwat.version> <epubcheck.version>5.2.1</epubcheck.version> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>Jhove</mainClass> </manifest> </archive> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <appendAssemblyId>false</appendAssemblyId> </configuration> <executions> <execution> <id>make-assembly</id> <!-- this is used for inheritance merges --> <phase>package</phase> <!-- bind to the packaging phase --> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Xss1024k</argLine> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.openpreservation.jhove</groupId> <artifactId>jhove-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> </dependency> <!-- JWAT for WARC, ARC and GZIP --> <dependency> <groupId>org.jwat</groupId> <artifactId>jwat-common</artifactId> <version>${jwat.version}</version> </dependency> <dependency> <groupId>org.jwat</groupId> <artifactId>jwat-gzip</artifactId> <version>${jwat.version}</version> </dependency> <dependency> <groupId>org.jwat</groupId> <artifactId>jwat-arc</artifactId> <version>${jwat.version}</version> </dependency> <dependency> <groupId>org.jwat</groupId> <artifactId>jwat-warc</artifactId> <version>${jwat.version}</version> </dependency> <!-- EPUBCheck for EPUB --> <dependency> <groupId>org.w3c</groupId> <artifactId>epubcheck</artifactId> <version>${epubcheck.version}</version> </dependency> </dependencies> </project>