Getting DecoderException to com.day.jcr.vault:content-package-maven-plugin:0.5.24 while AEM build via jenkins.
As a part of solutions, I've deleted the Repository folder and rebuild then it works for some extent.
But we need to delete complete repo folder daily for this.
(we tried to delete vault folder only but no luck.)
Still this decoderException persist.
I tried to add below versions in UI pom. but no luck.
1> <dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.16.0</version>
</dependency>
2>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.1.0</version>
</plugin>
3>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.11</version>
</dependency>
4><groupId>com.day.jcr.vault</groupId>
<artifactId>content-package-maven-plugin</artifactId>
<version>1.0.4</version>
5> <groupId>com.day.jcr.vault</groupId>
<artifactId>content-package-maven-plugin</artifactId>
<version>1.0.2</version>
Also tried to add this in settings.xml
<mirror>
<id>maven-default-http-blocker</id>
<mirrorOf>external:http:*</mirrorOf>
<name>Pseudo repository to mirror external repositories initially using HTTP.</name>
<url>http://0.0.0.0/</url>
<blocked>false</blocked>
</mirror>
Please let me know anybody already found the solution.
Thanks in advanced!