image-tiler
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.mycore.iview2</groupId> <artifactId>image-tiler</artifactId> <version>4.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.mycore</groupId> <artifactId>mycore-parent</artifactId> <version>56</version> </parent> <groupId>org.mycore.iview2</groupId> <artifactId>image-tiler</artifactId> <version>4.1</version> <name>MyCoRe IView2 Image Tiler Library</name> <description>Image Tiling Library</description> <scm> <connection>scm:git:https://github.com/MyCoRe-Org/image-tiler.git</connection> <developerConnection>scm:git:https://github.com/MyCoRe-Org/image-tiler.git</developerConnection> <url>https://github.com/MyCoRe-Org/image-tiler/tree/main</url> <tag>v4.1</tag> </scm> <properties> <java.target.version>17</java.target.version> <jaxb.version>3.0.1</jaxb.version> <log4j.version>2.17.1</log4j.version> </properties> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>appassembler-maven-plugin</artifactId> <configuration> <copyConfigurationDirectory>true</copyConfigurationDirectory> <programs> <program> <mainClass>org.mycore.imagetiler.MCRImage</mainClass> <id>imageTiler</id> </program> </programs> </configuration> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <configuration> <excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </pluginRepository> </pluginRepositories> <distributionManagement> <site> <id>MyCoRe HQ</id> <name>MyCoRe HQ-sites</name> <url>scp://server.mycore.de/mcr/mycore.de/generated/${project.artifactId}-${project.version}</url> </site> </distributionManagement> <dependencies> <dependency> <groupId>com.drewnoakes</groupId> <artifactId>metadata-extractor</artifactId> <version>2.18.0</version> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>${jaxb.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>${log4j.version}</version> </dependency> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-annotations</artifactId> <version>4.5.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <version>${jaxb.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${log4j.version}</version> <scope>test</scope> </dependency> </dependencies> <developers> <developer> <id>mcrtchef</id> <name>Thomas Scheffler</name> <email>thomas.scheffler (at) uni-jena.de</email> <organization>Friedrich-Schiller-Universität Jena, Thüringer Universitäts- und Landesbibliothek</organization> <organizationUrl>https://www.thulb.uni-jena.de/</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>mcrmeich</id> <name>Matthias Eichner</name> <email>matthias.eichner (at) uni-jena.de</email> <organization>Friedrich-Schiller-Universität Jena, Thüringer Universitäts- und Landesbibliothek</organization> <organizationUrl>https://www.thulb.uni-jena.de/</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>mcrvuchi</id> <name>Hu Chi Vu</name> <email>chi (at) thulb.uni-jena.de</email> <organization>Friedrich-Schiller-Universität Jena, Thüringer Universitäts- und Landesbibliothek</organization> <organizationUrl>https://www.thulb.uni-jena.de/</organizationUrl> <roles> <role>developer</role> </roles> <timezone>+1</timezone> </developer> </developers> </project>