mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Use string templates.
This commit is contained in:
parent
85deb1bca7
commit
f9c7e488d5
1 changed files with 4 additions and 4 deletions
|
@ -21,10 +21,10 @@ class ContextTest @Inject constructor(override val aether: KobaltAether): BaseTe
|
|||
@DataProvider
|
||||
fun dp() : Array<Array<out Any?>> {
|
||||
return arrayOf(
|
||||
arrayOf(KobaltContext.FileType.JAR, ARTIFACT + "-" + VERSION + ".jar"),
|
||||
arrayOf(KobaltContext.FileType.POM, ARTIFACT + "-" + VERSION + ".pom"),
|
||||
arrayOf(KobaltContext.FileType.JAVADOC, ARTIFACT + "-" + VERSION + "-javadoc.jar"),
|
||||
arrayOf(KobaltContext.FileType.SOURCES, ARTIFACT + "-" + VERSION + "-sources.jar")
|
||||
arrayOf(KobaltContext.FileType.JAR, "$ARTIFACT-$VERSION.jar"),
|
||||
arrayOf(KobaltContext.FileType.POM, "$ARTIFACT-$VERSION.pom"),
|
||||
arrayOf(KobaltContext.FileType.JAVADOC, "$ARTIFACT-$VERSION-javadoc.jar"),
|
||||
arrayOf(KobaltContext.FileType.SOURCES, "$ARTIFACT-$VERSION-sources.jar")
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue