Gradle 1.12 now downloads snapshots when I apply a version range

When I user a version range (0.1.+) Gradle will download the snapshot CompPlugin-0.1.37-SNAPSHOT.jar instead of CompPlugin-0.1.36.jar now ?!?

buildscript {

repositories {

maven {

name = ‘DownloadRepositoryCompPublic’

credentials {

username “${nexusUser}”

password “${nexusPassword}”

}

url “http://$nexusServer:$nexusPort/nexus/content/groups/public”

}

}

dependencies {

classpath group: ‘de.comp_is.gradle’, name: ‘CompPlugin’, version: ‘0.1.+’

} }

Filed GRADLE-3080. Thanks for the report.