From ce79442da87757f49bcfedb08d22ba45a80f66e7 Mon Sep 17 00:00:00 2001 From: Heiko Seeberger Date: Sat, 29 May 2010 07:28:42 +0200 Subject: [PATCH] closes #247: Added all missing module configurations. --- project/build/AkkaProject.scala | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/project/build/AkkaProject.scala b/project/build/AkkaProject.scala index 749557360f..d6537dc0b0 100644 --- a/project/build/AkkaProject.scala +++ b/project/build/AkkaProject.scala @@ -44,7 +44,7 @@ class AkkaParent(info: ProjectInfo) extends DefaultProject(info) { // Repositories // Every dependency that cannot be resolved from the built-in repositories (Maven Central and Scala Tools Releases) // must be resolved from a ModuleConfiguration. This will result in a significant acceleration of the update action. - // Therefore, if repositories are defined this must happen as def, not as val. + // Therefore, if repositories are defined, this must happen as def, not as val. // ------------------------------------------------------------------------------------------------------------------- val embeddedRepo = "Embedded Repo" at (info.projectPath / "embedded-repo").asURL.toString // Fast enough => No need for a module configuration here! val scalaTestModuleConfig = ModuleConfiguration("org.scalatest", ScalaToolsSnapshots) @@ -54,17 +54,23 @@ class AkkaParent(info: ProjectInfo) extends DefaultProject(info) { val jbossModuleConfig = ModuleConfiguration("org.jboss", jbossRepo) val nettyModuleConfig = ModuleConfiguration("org.jboss.netty", jbossRepo) val jgroupsModuleConfig = ModuleConfiguration("jgroups", jbossRepo) - def sunjdmkRepo = "sunjdmk" at "http://wp5.e-taxonomy.eu/cdmlib/mavenrepo" + def sunjdmkRepo = "Sun JDMK Repo" at "http://wp5.e-taxonomy.eu/cdmlib/mavenrepo" val jmsModuleConfig = ModuleConfiguration("javax.jms", sunjdmkRepo) val jdmkModuleConfig = ModuleConfiguration("com.sun.jdmk", sunjdmkRepo) val jmxModuleConfig = ModuleConfiguration("com.sun.jmx", sunjdmkRepo) - /* + def javaNetRepo = "java.net Repo" at "http://download.java.net/maven/2" + val jerseyModuleConfig = ModuleConfiguration("com.sun.jersey", javaNetRepo) + val jerseyContrModuleConfig = ModuleConfiguration("com.sun.jersey.contribs", javaNetRepo) + val grizzlyModuleConfig = ModuleConfiguration("com.sun.grizzly", javaNetRepo) + val atmosphereModuleConfig = ModuleConfiguration("org.atmosphere", javaNetRepo) + val liftModuleConfig = ModuleConfiguration("net.liftweb", ScalaToolsSnapshots) + + /* These are not needed and can possibly be deleted. val databinder = "DataBinder" at "http://databinder.net/repo" // val configgy = "Configgy" at "http://www.lag.net/repo" val codehaus = "Codehaus" at "http://repository.codehaus.org" val codehaus_snapshots = "Codehaus Snapshots" at "http://snapshots.repository.codehaus.org" val google = "Google" at "http://google-maven-repository.googlecode.com/svn/repository" - val java_net = "java.net" at "http://download.java.net/maven/2" */ // ------------------------------------------------------------