I'm currently busy migrating fairly old projects from Ant to Gradle. This includes replacing the lib
directories with equivalent Gradle dependency management.
Currently I'm having trouble with Maven Central. Some dependencies (I found at least 3) have a POM file but the corresponding JAR file is missing e.g.
- Available POM: http://central.maven.org/maven2/javax/mail/mail/1.3.1/mail-1.3.1.pom
- Missing JAR: http://central.maven.org/maven2/javax/mail/mail/1.3.1/mail-1.3.1.jar
Is this a recent Maven Central problem or were these JARs never available on Maven Central?
PS I could use newer versions of the libaries but I would prefer to first get the project working with the current dependencies before updating.