aboutsummaryrefslogtreecommitdiff
path: root/stage2/Lib.scala
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2016-07-06 23:36:40 -0400
committerGitHub <noreply@github.com>2016-07-06 23:36:40 -0400
commitc07b2e2dc582a5354fdd47b75236d1d221b98c91 (patch)
tree0777e40e452cffa0f785f1cc809ba2bc46418cb2 /stage2/Lib.scala
parentdff71b0fce364e7edab5c1a1f11dd8b32e2c3983 (diff)
parentec35ffeba2f5e8a2b1e61c3ba7da4276aa0c8211 (diff)
downloadcbt-c07b2e2dc582a5354fdd47b75236d1d221b98c91.tar.gz
cbt-c07b2e2dc582a5354fdd47b75236d1d221b98c91.tar.bz2
cbt-c07b2e2dc582a5354fdd47b75236d1d221b98c91.zip
Merge pull request #203 from cvogt/publish-local
Publish local
Diffstat (limited to 'stage2/Lib.scala')
-rw-r--r--stage2/Lib.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/stage2/Lib.scala b/stage2/Lib.scala
index b65af2d..81d36f3 100644
--- a/stage2/Lib.scala
+++ b/stage2/Lib.scala
@@ -367,6 +367,18 @@ final class Lib(logger: Logger) extends Stage1Lib(logger) with Scaffold{
}
}
+ def publishLocal( sourceFiles: Seq[File], artifacts: Seq[File], mavenCache: File, releaseFolder: String ): Unit = {
+ if(sourceFiles.nonEmpty){
+ val targetDir = mavenCache ++ releaseFolder.stripSuffix("/")
+ targetDir.mkdirs
+ artifacts.foreach{ a =>
+ val target = targetDir ++ ("/" ++ a.getName)
+ System.err.println(blue("publishing ") ++ target.getPath)
+ Files.copy( a.toPath, target.toPath, StandardCopyOption.REPLACE_EXISTING )
+ }
+ }
+ }
+
def publishSigned( sourceFiles: Seq[File], artifacts: Seq[File], url: URL, credentials: Option[String] = None ): Unit = {
// TODO: make concurrency configurable here
if(sourceFiles.nonEmpty){