Add snapshot metadata test

This commit is contained in:
Alexandre Archambault 2015-07-07 19:43:16 +01:00
parent da4b0ee648
commit bb01b867dd
2 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,5 @@
com.github.fommil:java-logging:jar:1.2-SNAPSHOT
org.slf4j:jcl-over-slf4j:jar:1.7.5
org.slf4j:log4j-over-slf4j:jar:1.7.5
org.slf4j:slf4j-api:jar:1.7.5
org.slf4j:slf4j-jdk14:jar:1.7.5

View File

@ -1,7 +1,7 @@
package coursier
package test
import coursier.core.Repository
import coursier.core.{ Repository, MavenRepository }
import utest._
import scala.async.Async.{ async, await }
@ -135,6 +135,14 @@ object CentralTests extends TestSuite {
"0.2.0"
)
}
'snapshotMetadata{
// Let's hope this one won't change too much
resolutionCheck(
Module("com.github.fommil", "java-logging"),
"1.2-SNAPSHOT",
extraRepo = Some(MavenRepository("https://oss.sonatype.org/content/repositories/public/"))
)
}
}
}