Niclas Hedhman a écrit : > Somewhere, artifact/version/filename parsing is happening. If I provide a > "-Dversion=3.0.0-alpha1" then the file names are screwed up, and becomes > ".jar", "-sources.jar" and so on, without a name. > > The following from a quick test; > > 3.0.0 --> correct file names > 3.0.0.alpha1 --> corrupt > 3.0.0-alpha1 --> corrupt > 3.0.alpha1 --> correct
This is what I get after doing the following from a clean build: - ./gradlew install - ./gradlew install -Dversion=3.0.0-SNAPSHOT - ./gradlew install -Dversion=3.0-alpha1 - ./gradlew install -Dversion=3.0.0.alpha1 http://pasteboard.co/Dwzq3wXKT.png Everything looks good to me. What steps/commands did you use?
