Changing source jar naming from src to sources
This commit is contained in:
parent
7b56315e35
commit
3a4355c6cc
1 changed files with 4 additions and 1 deletions
|
|
@ -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 =>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue