-1

I am using sbt to create an akka-HTTP project. The command I am using is "sbt new https://github.com/akka/akka-http-java-seed.g8."

But it says Template not found for: https://github.com/akka/akka-http-java-seed.g8.

What shall I do?

  • Just tried and it's working. Maybe you error is given by last dot you put in the end inside the double quotes. `sbt new https://github.com/akka/akka-http-java-seed.g8` – Luca T. Jan 18 '18 at 07:00
  • Even without the . dot it is saying the same – Aman Jajodia Jan 18 '18 at 11:54

2 Answers2

1

You had a dot . after the url.

dvim
  • 2,223
  • 1
  • 17
  • 17
0

The Akka HTTP quickstart in Java says that we should

  • use Java 8 or higher
  • SBT 0.13.13 or higher
  • and the command is the following: sbt -Dsbt.version=0.13.15 new akka/akka-http-java-seed.g8

But I guess sbt new akka/akka-http-java-seed.g8 will be enough.

Donato Szilagyi
  • 4,279
  • 4
  • 36
  • 53