Changing source jar naming from src to sources

This commit is contained in:
Viktor Klang 2010-08-26 16:30:28 +02:00
parent 7b56315e35
commit 3a4355c6cc

View file

@ -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 =>