|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
[mojo-dev] [jira] (MFINDBUGS-120) java.io.IOException: CreateProcess error=87 due to classpath > 64k
- [mojo-dev] [jira] (MFINDBUGS-120) java.io.IOExc... Garvin LeClaire (JIRA)
- [mojo-dev] [jira] (MFINDBUGS-120) java.io.... Garvin LeClaire (JIRA)
- [mojo-dev] [jira] (MFINDBUGS-120) java.io.... Michael Hinterseher (JIRA)
- [mojo-dev] [jira] (MFINDBUGS-120) java.io.... Garvin LeClaire (JIRA)

I started to look into why some libraries (e.g. trove) were not downloaded any more.
The reason is a move of various libraries into a deprecated repository.
In order to fix my test harness you have to define this repository as well:
<repository>
<id>jboss-deprecated-repository</id>
<name>JBoss Deprecated Maven Repository</name>
<url>https://repository.jboss.org/nexus/content/repositories/deprecated/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
I have not yet tried to verify if the problem still exists but at least adding the repository fixes the download problem of my harness.