From 44d0f2dadbea4492ac9a36ffc5478fd95cf461a5 Mon Sep 17 00:00:00 2001 From: Peter Vlugter Date: Mon, 22 Nov 2010 13:14:10 +1300 Subject: [PATCH] Disable cross paths for publishing without Scala version --- project/build/AkkaProject.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/build/AkkaProject.scala b/project/build/AkkaProject.scala index 0946f87f1f..eace80ba22 100644 --- a/project/build/AkkaProject.scala +++ b/project/build/AkkaProject.scala @@ -307,7 +307,7 @@ class AkkaParentProject(info: ProjectInfo) extends DefaultProject(info) { // ------------------------------------------------------------------------------------------------------------------- // Miscellaneous // ------------------------------------------------------------------------------------------------------------------- - override def artifactID: String = this.name + override def disableCrossPaths = true override def mainClass = Some("akka.kernel.Main") @@ -949,7 +949,7 @@ class AkkaParentProject(info: ProjectInfo) extends DefaultProject(info) { // ------------------------------------------------------------ class AkkaDefaultProject(info: ProjectInfo, val deployPath: Path) extends DefaultProject(info) with DeployProject with OSGiProject { - override def artifactID: String = this.name + override def disableCrossPaths = true lazy val sourceArtifact = Artifact(this.artifactID, "source", "jar", Some("sources"), Nil, None) lazy val docsArtifact = Artifact(this.artifactID, "doc", "jar", Some("docs"), Nil, None) override def runClasspath = super.runClasspath +++ (AkkaParentProject.this.info.projectPath / "config")