Andrew Turgeon

Results 2 comments of Andrew Turgeon

details on the caret operator -> https://docs.npmjs.com/misc/semver#caret-ranges-123-025-004

So here's my new configuration: ``` buildscript { repositories { jcenter() } dependencies { classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.1' } } apply plugin: 'com.github.johnrengelman.plugin-shadow' apply plugin: 'java' configurations { shadowAndCompile compile.extendsFrom(shadowAndCompile) } dependencies...