Gradle

Automatic dependency update detection with Gradle

Gradle has the possibility to check if the libraries used by your project has a new version. In order to use the feature, you need to add following elements to your Gradle configuration: buildscript { dependencies { classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0' } } apply plugin: 'com.github.ben-manes.versions'   After configuring the project, you can start the following command… Continue reading Automatic dependency update detection with Gradle

Advertisement