[NO MERGE] Force deleting sources/javadoc to fix sbt/sbt#1750#15
Closed
dwijnand wants to merge 4 commits intosbt:2.3.x-sbtfrom
dwijnand:issue/sbt/gh1750/updateClassifiers/SNAPSHOT
Closed
[NO MERGE] Force deleting sources/javadoc to fix sbt/sbt#1750#15dwijnand wants to merge 4 commits intosbt:2.3.x-sbtfrom dwijnand:issue/sbt/gh1750/updateClassifiers/SNAPSHOT
dwijnand wants to merge 4 commits intosbt:2.3.x-sbtfrom
dwijnand:issue/sbt/gh1750/updateClassifiers/SNAPSHOT
Conversation
Member
|
@dwijnand For some reason this test is failing: |
Member
Author
|
Passes locally. I'll restart it (the cheaty way). |
Member
Author
|
Btw, the setup for testing sbt's 1750 is:
// sbt-gh1750-bippy/build.sbt
organization := "com.dwijnand"
name := "sbt-gh1750-bippy"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.11.7"
val localNexusReleases = "local-nexus-releases" at "http://localhost:8081/nexus/content/repositories/releases"
val localNexusSnapshots = "local-nexus-snapshots" at "http://localhost:8081/nexus/content/repositories/snapshots"
val localNexusCreds = Credentials("Sonatype Nexus Repository Manager", "localhost", "admin", "admin123")
publishTo := Some(if (isSnapshot.value) localNexusSnapshots else localNexusReleases)
credentials := Seq(localNexusCreds)// sbt-gh1750-myapp/build.sbt
organization := "com.dwijnand"
name := "sbt-gh1750-myapp"
version := "0.1.0-SNAPSHOT"
scalaVersion := "2.11.7"
val localNexusReleases = "local-nexus-releases" at "http://localhost:8081/nexus/content/repositories/releases"
val localNexusSnapshots = "local-nexus-snapshots" at "http://localhost:8081/nexus/content/repositories/snapshots"
resolvers += localNexusReleases
resolvers += localNexusSnapshots
libraryDependencies += "com.dwijnand" %% "sbt-gh1750-bippy" % "0.1.0-SNAPSHOT" |
Member
Author
|
@eed3si9n Confirmed and help me confirm that I was in fact updating Ivy version. Confirmation can be found via > reload plugins
> show externalDependencyClasspathRemote debugging in IntelliJ was just confused. Along with being confused I might've not refreshed IntelliJ with the build changes. Proper PR in #17. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is an attempt fix sbt/sbt#1750 by forcing the deletion of any sources, src or javadoc present if a POM was updated (ie. new SNAPSHOT release).
But I can't seem to change sbt to use this updated version to finish testing it works.
Can anyone try please?
The last commit is just for debugging my problem with updating, intended to be dropped.