I'm using iText
library for generating PDF files and I could successfully import the required libraries by the following maven dependencies to my java project:
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>kernel</artifactId>
<version>7.0.0</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>layout</artifactId>
<version>7.0.0</version>
</dependency>
Now I want to consume their iText DITO SDK
. Although I can find its maven dependency declaration from here, there is not such a dependency in the mvnrepository. Therefore I cannot import the required libraries via the following code snippet.
<dependency>
<groupId>com.itextpdf.dito</groupId>
<artifactId>sdk-java</artifactId>
<version>1.3.7</version>
<type>pom</type>
</dependency>
How can I resolve this issue? (It is possible to directly import the SDK libs, but I prefer to use the maven capabilities)