Skip to content

Commit

Permalink
initial implementation for DV-METS generator #77
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteph-de committed May 3, 2024
1 parent 40f120a commit e80d084
Show file tree
Hide file tree
Showing 3 changed files with 630 additions and 24 deletions.
60 changes: 37 additions & 23 deletions jspdocportal-diskcache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<name>jspdocportal-diskcache</name>
<description>Cacheing and generation of derived files</description>
<properties>
<manifest.priority>13</manifest.priority>
</properties>
<manifest.priority>13</manifest.priority>
</properties>
<dependencies>
<dependency>
<!-- TEMPORARY - until we properly cleanup code from
Expand All @@ -30,37 +30,51 @@
<groupId>org.mycore</groupId>
<artifactId>mycore-solr</artifactId>
</dependency>
<dependency>
<!-- TEMPORARY - used for IIIF Manifest Generator implementation should move to IIIF module -->
<dependency>
<!-- TEMPORARY - used for IIIF Manifest Generator implementation
should move to IIIF module -->
<groupId>org.mycore</groupId>
<artifactId>mycore-iiif</artifactId>
</dependency>

<!-- TEMPORARY - used for DV METS Generator -->
<dependency>
<groupId>org.mycore.libmeta</groupId>
<artifactId>libmeta-mets</artifactId>
<version>0.8.1</version>
</dependency>

<dependency>
<groupId>org.mycore.libmeta</groupId>
<artifactId>libmeta-mods</artifactId>
<version>0.8.1</version>
</dependency>

<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addExtensions></addExtensions>
</manifest>
<manifestEntries>
<MCR-Artifact-Id>${project.artifactId}</MCR-Artifact-Id>
<MCR-Application-Module>${project.name}</MCR-Application-Module>
<Priority>${manifest.priority}</Priority>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<addExtensions></addExtensions>
</manifest>
<manifestEntries>
<MCR-Artifact-Id>${project.artifactId}</MCR-Artifact-Id>
<MCR-Application-Module>${project.name}</MCR-Application-Module>
<Priority>${manifest.priority}</Priority>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>

<dependencyManagement>
Expand Down
Loading

0 comments on commit e80d084

Please sign in to comment.