Skip to content

Commit

Permalink
support exif and tiff orientation #34 (#36)
Browse files Browse the repository at this point in the history
* do not use File

* use Path API in test cases
  • Loading branch information
yagee-de authored Jul 21, 2023
1 parent 6f9c764 commit 5d7c76c
Show file tree
Hide file tree
Showing 9 changed files with 504 additions and 81 deletions.
11 changes: 5 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@
</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>
Expand All @@ -108,12 +113,6 @@
<version>${jaxb.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
requires jakarta.xml.bind;
requires org.apache.logging.log4j;
requires com.github.spotbugs.annotations;
requires metadata.extractor;
exports org.mycore.imagetiler;
opens org.mycore.imagetiler to jakarta.xml.bind;
uses org.mycore.imagetiler.MCRTileEventHandler;
Expand Down
Loading

0 comments on commit 5d7c76c

Please sign in to comment.