Re: [akka-user] How to download and install newest Akka

2017-07-08 Thread Justin du coeur
Ahhh -- okay, that's kind of a pain. I haven't done it myself, but if the computer is truly isolated, I *think* that means you need to do everything as unmanaged dependencies, as described in the sbt documentation . As for where you fi

Re: [akka-user] How to download and install newest Akka

2017-07-08 Thread Eras Rasmuson
But if the network access is not available, it is working badly or necessary https-addresses used by sbt are blocked ? That was real case of one my computer in my work place. How to get Akka working in that case (because sbt can not download automatically) ? Eras lauantai 8. heinäkuuta 2

Re: [akka-user] How to download and install newest Akka

2017-07-08 Thread Justin du coeur
Just to give the critical high point, so you go into the documentation knowing what you're looking at: when you are writing a Scala program, you don't manually download much. Instead, you write an sbt file, which *describes* what this program depends upon. When you compile the program using sbt,

Re: [akka-user] How to download and install newest Akka

2017-07-08 Thread Konrad “ktoso” Malawski
Akka is just a Scala/Java library, you’d use it like any other Scla/Java library. So you could add it as dependency in your maven file, or first learn how to use sbt: http://www.scala-sbt.org/ and to the same there. Akka dependencies are listed on http://akka.io/docs/ Happy hakking — Konrad On

Re: [akka-user] How to download and install newest Akka

2017-07-08 Thread Eras Rasmuson
Ok. I would want to use Akka with Scala and its tools (like sbt), but i am a novice with Scala. Is it possible to get Akka from GitHub ? https://github.com/akka/akka Eras lauantai 8. heinäkuuta 2017 0.01.18 UTC+3 Justin du coeur kirjoitti: > > I think you're misunderstanding what Akka is