[armedbear-devel] Loading MVN com.typesafe.akka:akka artifacts

Mark Evenson evenson at panix.com
Thu Aug 15 08:04:28 UTC 2013


On 8/13/13 9:29 PM, ubikation _ wrote:

[…]
> My repository is at https://github.com/ubikation/chemicalambda if anyone
> is interested in my progress or wants a better idea of where I am (not
> really beyond starting the project at the moment).

I can't seem to load the Akka binaries purely via ABCL-ASDF:  I had to 
"prime" via running Maven explicitly on the [chemicalambda pom][]1]. 
Well, I need to give the code some love anyways, so it is good to have a 
test case.

[1]: https://github.com/ubikation/chemicalambda/blob/master/pom.xml

Problem
-------

(abcl-asdf:resolve "com.typesafe.akka:akka:RELEASE")

ARTIFACT_RESOLVED org.scala-lang:scala-library:jar:2.11.0-M3 
(/home/evenson/.m2/repository/org/scala-lang/scala-library/2.11.0-M3/scala-library-2.11.0-M3.jar) 
@ central (http://repo1.maven.org/maven2/, releases+snapshots)
ARTIFACT_RESOLVED com.typesafe.akka:akka:jar:RELEASE
; Evaluation aborted on #<JAVA-EXCEPTION 
org.sonatype.aether.resolution.DependencyResolutionException: Could not 
find artifact com.typesafe.akka:akka:jar:2.2.0-RC2 in central 
(http://repo1.maven.org/maven2/) {602ABB9E}>.

Solution
--------

Likely problems with the distributed Maven artifact graph.

Run

     ~/work/chemicalambda$ mvn install

to get Maven to cache the jars under ~/.m2/repository.  From there, 
ABCL-ASDF can locate

(abcl-asdf:resolve "com.typesafe.akka:akka:RELEASE")

"/Users/evenson/.m2/repository/com/typesafe/akka/akka/2.2/akka-2.2.jar:/Users/evenson/.m2/repository/com/typesafe/akka/akka-actor_2.10/2.2.0/akka-actor_2.10-2.2.0.jar:/Users/evenson/.m2/repository/org/scala-lang/scala-library/2.10.2/scala-library-2.10.2.jar:/Users/evenson/.m2/repository/com/typesafe/config/1.0.2/config-1.0.2.jar"


-- 
"A screaming comes across the sky.  It has happened before, but there
is nothing to compare to it now."



More information about the armedbear-devel mailing list