From 3a4355c6ccfe08b44a02682c9e826adbe466625e Mon Sep 17 00:00:00 2001 From: Viktor Klang Date: Thu, 26 Aug 2010 16:30:28 +0200 Subject: [PATCH] Changing source jar naming from src to sources --- project/build/AkkaProject.scala | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/project/build/AkkaProject.scala b/project/build/AkkaProject.scala index a06e5ec3d8..4503357db6 100644 --- a/project/build/AkkaProject.scala +++ b/project/build/AkkaProject.scala @@ -729,7 +729,10 @@ class AkkaParentProject(info: ProjectInfo) extends DefaultProject(info) { def akkaArtifacts = descendents(info.projectPath / "dist", "*" + buildScalaVersion + "-" + version + ".jar") // ------------------------------------------------------------ - class AkkaDefaultProject(info: ProjectInfo, val deployPath: Path) extends DefaultProject(info) with DeployProject with OSGiProject + class AkkaDefaultProject(info: ProjectInfo, val deployPath: Path) extends DefaultProject(info) with DeployProject with OSGiProject { + override def packageDocsJar = this.defaultJarPath("-docs.jar") + override def packageSrcJar = this.defaultJarPath("-sources.jar") + } } trait DeployProject { self: BasicScalaProject =>