I have the following snippet in my pom.xml file, trying to install the iText library:
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itext-core</artifactId>
<version>8.0.1</version>
</dependency>
However, when I clean and build the project I get the following error:
Failed to execute goal on project ProjectName: Could not resolve dependencies for project com.mycompany:ProjectName:jar:1.0-SNAPSHOT: com.itextpdf:itext-core:jar:8.0.1 was not found in https://repo.maven.apache.org/maven2 during a previous attempt. This failure was cached in the local repository and resolution is not reattempted until the update interval of central has elapsed or updates are forced.
The only version of iText in the maven thing seems to have not been updated since 2005 - how can I make it register 8.0.1?