Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tackle deprecation warning generated by Gradle 4.x #1853

Merged
merged 1 commit into from Dec 4, 2017

Commits on Dec 2, 2017

  1. Tackle deprecation warning generated by Gradle 4.x

    In Gradle 4.x, the method getClassesDir() in SourceSetOutput has been
    deprecated in favor of a new method getClassesDirs().
    
    Use reflection to invoke this method, if it is available, so that
    consumers using Gradle 4.x are spared the deprecation warning. Fall back
    to the original method for consumers using Gradle 3.x.
    
    Fixes flyway#1686
    smoothreggae committed Dec 2, 2017
    Copy the full SHA
    455b219 View commit details
    Browse the repository at this point in the history