mirror of https://github.com/sbt/sbt.git
Give the .jar extension to maven-plugin packages
This commit is contained in:
parent
cffbe747ed
commit
f167b36c1c
|
|
@ -152,6 +152,7 @@ object MavenSource {
|
|||
|
||||
val typeExtensions: Map[String, String] = Map(
|
||||
"eclipse-plugin" -> "jar",
|
||||
"maven-plugin" -> "jar",
|
||||
"hk2-jar" -> "jar",
|
||||
"orbit" -> "jar",
|
||||
"scala-jar" -> "jar",
|
||||
|
|
|
|||
|
|
@ -247,6 +247,15 @@ object CentralTests extends TestSuite {
|
|||
"jar"
|
||||
)
|
||||
}
|
||||
|
||||
'mavenPlugin - {
|
||||
// has packaging maven-plugin - ensuring coursier gives its artifact the .jar extension
|
||||
ensureArtifactHasExtension(
|
||||
Module("org.bytedeco", "javacpp"),
|
||||
"1.1",
|
||||
"jar"
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue