Gradle 2.5 breaks my code

Hi everyone,

I have been working on a project for the past 2 years. I keep upgrading to newer versions from time to time. This upgrade took a while and I jumped from 2.1 to 2.5. Now, after the upgrade, I am getting this error:

error: package hirondelle.date4j does not exist.

This is a date4j package that I have modified and hence use a custom maven repository on my local machine. While using the debug mode, I can see that the repository is found and loaded. However, all I use in my java file to import the package is:

import hirondelle.date4j.DateTime;

I have the repository installed here:

/home/xxx/.m2/repository/org/apache/maven/date4jprecise/1.0

And I define maven repositories like this in my build.gradle file:

repositories{
    mavenCentral()
    mavenLocal()
}

This works correctly with version 2.1 but breaks with version 2.5. Any idea what might be going on here ?

Does the same package exist in mavenCentral()?