Error while compiling scala play applicationSimple SBT Module in Play Project Causes Play to Crash for Unknown reason - play 2.1scala reference sbt project versionScala Play making sense of a new project dependencies?Error downloading and compiling play-mailer pluginhow to connect to cassandra through scala in play frameworkTrying to use Play 2.5.3 but SBT freezes while resolving dependencyFailed running activator run after play-slick upgradeplay-sbt 2.5.6 plugin giving unresolved dependencies errorPlay Framework: Cannot load the JNotify native libraryPackage fat jar into a debian using sbt native packaging
Why does the U.S military use mercenaries?
How can I fix the label locations on my tikzcd diagram?
Why is so much ransomware breakable?
How to continually and organically let my readers know what time it is in my story?
Thread.sleep inside infinite while loop doesn't throw exception - why?
How was the blinking terminal cursor invented?
Solenoid fastest possible release - for how long should reversed polarity be applied?
Why is Drogon so much better in battle than Rhaegal and Viserion?
Why is the A380’s with-reversers stopping distance the same as its no-reversers stopping distance?
Why do galaxies collide?
Why are lawsuits between the President and Congress not automatically sent to the Supreme Court
Why is it correct to use ~た in this sentence, even though we're talking about next week?
Why does string strummed with finger sound different from the one strummed with pick?
Why does Taylor’s series “work”?
Is there an academic word that means "to split hairs over"?
Was the dragon prowess intentionally downplayed in S08E04?
Why nobody knew who the Lord was?
Roman Numerals Equation 2
How can I safely determine the output voltage and current of a transformer?
Who is frowning in the sentence "Daisy looked at Tom frowning"?
Why doesn't Iron Man's action affect this person in Endgame?
When did Britain learn about American independence?
refer string as a field API name
Why aren't satellites disintegrated even though they orbit earth within their Roche Limits?
Error while compiling scala play application
Simple SBT Module in Play Project Causes Play to Crash for Unknown reason - play 2.1scala reference sbt project versionScala Play making sense of a new project dependencies?Error downloading and compiling play-mailer pluginhow to connect to cassandra through scala in play frameworkTrying to use Play 2.5.3 but SBT freezes while resolving dependencyFailed running activator run after play-slick upgradeplay-sbt 2.5.6 plugin giving unresolved dependencies errorPlay Framework: Cannot load the JNotify native libraryPackage fat jar into a debian using sbt native packaging
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a scala play application which I am trying to compile using the sbt shell
My build.sbt file is as follows
name := """template-service"""
version := "2.6.x"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.12.4"
crossScalaVersions := Seq("2.11.12", "2.12.4")
libraryDependencies += guice
libraryDependencies += "com.typesafe.play" %% "play-slick" % "3.0.3"
libraryDependencies += "com.typesafe.play" %% "play-slick-evolutions" % "3.0.3"
libraryDependencies += "com.h2database" % "h2" % "1.4.196"
libraryDependencies += specs2 % Test
resolvers += Resolver.url("bintray-sbt-plugins", url("https://dl.bintray.com/sbt/sbt-plugin-releases/"))(Resolver.ivyStylePatterns)
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.5.1")
However, while compiling I keep on getting the error
Projects/template-service/build.sbt:5: error: not found: value PlayScala
lazy val root = (project in file(".")).enablePlugins(PlayScala)
^
[error] sbt.compiler.EvalException: Type error in expression
[error] sbt.compiler.EvalException: Type error in expression
[error] Use 'last' for the full log.
I tried restarting the sbt shell and repeated the above procedure and got the error consistently. Could anyone please let me know what I am missing in the build.sbt file? Is it some kind of a configuration setting that needs to be added ?
Any pointers will be highly helpful. Thanks in advance !!!
scala playframework sbt
add a comment |
I have a scala play application which I am trying to compile using the sbt shell
My build.sbt file is as follows
name := """template-service"""
version := "2.6.x"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.12.4"
crossScalaVersions := Seq("2.11.12", "2.12.4")
libraryDependencies += guice
libraryDependencies += "com.typesafe.play" %% "play-slick" % "3.0.3"
libraryDependencies += "com.typesafe.play" %% "play-slick-evolutions" % "3.0.3"
libraryDependencies += "com.h2database" % "h2" % "1.4.196"
libraryDependencies += specs2 % Test
resolvers += Resolver.url("bintray-sbt-plugins", url("https://dl.bintray.com/sbt/sbt-plugin-releases/"))(Resolver.ivyStylePatterns)
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.5.1")
However, while compiling I keep on getting the error
Projects/template-service/build.sbt:5: error: not found: value PlayScala
lazy val root = (project in file(".")).enablePlugins(PlayScala)
^
[error] sbt.compiler.EvalException: Type error in expression
[error] sbt.compiler.EvalException: Type error in expression
[error] Use 'last' for the full log.
I tried restarting the sbt shell and repeated the above procedure and got the error consistently. Could anyone please let me know what I am missing in the build.sbt file? Is it some kind of a configuration setting that needs to be added ?
Any pointers will be highly helpful. Thanks in advance !!!
scala playframework sbt
1
You shouldn't really be puttingaddSbtPluginlines in your build.sbt file - this is what /project/plugins.sbt is for.
– James Whiteley
Mar 23 at 21:06
can you add the contents of/project/plugins.sbtto your question?
– pme
Mar 24 at 8:02
add a comment |
I have a scala play application which I am trying to compile using the sbt shell
My build.sbt file is as follows
name := """template-service"""
version := "2.6.x"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.12.4"
crossScalaVersions := Seq("2.11.12", "2.12.4")
libraryDependencies += guice
libraryDependencies += "com.typesafe.play" %% "play-slick" % "3.0.3"
libraryDependencies += "com.typesafe.play" %% "play-slick-evolutions" % "3.0.3"
libraryDependencies += "com.h2database" % "h2" % "1.4.196"
libraryDependencies += specs2 % Test
resolvers += Resolver.url("bintray-sbt-plugins", url("https://dl.bintray.com/sbt/sbt-plugin-releases/"))(Resolver.ivyStylePatterns)
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.5.1")
However, while compiling I keep on getting the error
Projects/template-service/build.sbt:5: error: not found: value PlayScala
lazy val root = (project in file(".")).enablePlugins(PlayScala)
^
[error] sbt.compiler.EvalException: Type error in expression
[error] sbt.compiler.EvalException: Type error in expression
[error] Use 'last' for the full log.
I tried restarting the sbt shell and repeated the above procedure and got the error consistently. Could anyone please let me know what I am missing in the build.sbt file? Is it some kind of a configuration setting that needs to be added ?
Any pointers will be highly helpful. Thanks in advance !!!
scala playframework sbt
I have a scala play application which I am trying to compile using the sbt shell
My build.sbt file is as follows
name := """template-service"""
version := "2.6.x"
lazy val root = (project in file(".")).enablePlugins(PlayScala)
scalaVersion := "2.12.4"
crossScalaVersions := Seq("2.11.12", "2.12.4")
libraryDependencies += guice
libraryDependencies += "com.typesafe.play" %% "play-slick" % "3.0.3"
libraryDependencies += "com.typesafe.play" %% "play-slick-evolutions" % "3.0.3"
libraryDependencies += "com.h2database" % "h2" % "1.4.196"
libraryDependencies += specs2 % Test
resolvers += Resolver.url("bintray-sbt-plugins", url("https://dl.bintray.com/sbt/sbt-plugin-releases/"))(Resolver.ivyStylePatterns)
addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.5.1")
However, while compiling I keep on getting the error
Projects/template-service/build.sbt:5: error: not found: value PlayScala
lazy val root = (project in file(".")).enablePlugins(PlayScala)
^
[error] sbt.compiler.EvalException: Type error in expression
[error] sbt.compiler.EvalException: Type error in expression
[error] Use 'last' for the full log.
I tried restarting the sbt shell and repeated the above procedure and got the error consistently. Could anyone please let me know what I am missing in the build.sbt file? Is it some kind of a configuration setting that needs to be added ?
Any pointers will be highly helpful. Thanks in advance !!!
scala playframework sbt
scala playframework sbt
asked Mar 23 at 16:05
Chaitanya WaikarChaitanya Waikar
1,700419
1,700419
1
You shouldn't really be puttingaddSbtPluginlines in your build.sbt file - this is what /project/plugins.sbt is for.
– James Whiteley
Mar 23 at 21:06
can you add the contents of/project/plugins.sbtto your question?
– pme
Mar 24 at 8:02
add a comment |
1
You shouldn't really be puttingaddSbtPluginlines in your build.sbt file - this is what /project/plugins.sbt is for.
– James Whiteley
Mar 23 at 21:06
can you add the contents of/project/plugins.sbtto your question?
– pme
Mar 24 at 8:02
1
1
You shouldn't really be putting
addSbtPlugin lines in your build.sbt file - this is what /project/plugins.sbt is for.– James Whiteley
Mar 23 at 21:06
You shouldn't really be putting
addSbtPlugin lines in your build.sbt file - this is what /project/plugins.sbt is for.– James Whiteley
Mar 23 at 21:06
can you add the contents of
/project/plugins.sbt to your question?– pme
Mar 24 at 8:02
can you add the contents of
/project/plugins.sbt to your question?– pme
Mar 24 at 8:02
add a comment |
1 Answer
1
active
oldest
votes
You should bring the play plugin in project/plugins.sbt:
In your project directory, inside the project dir, create a file called plugins.sbt and add to it this content:
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.7.0")
which adds the play sbt plugin (specifically play 2.7.0 - use another version if you need).
Then type reload in your sbt shell to restart the shell.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315675%2ferror-while-compiling-scala-play-application%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You should bring the play plugin in project/plugins.sbt:
In your project directory, inside the project dir, create a file called plugins.sbt and add to it this content:
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.7.0")
which adds the play sbt plugin (specifically play 2.7.0 - use another version if you need).
Then type reload in your sbt shell to restart the shell.
add a comment |
You should bring the play plugin in project/plugins.sbt:
In your project directory, inside the project dir, create a file called plugins.sbt and add to it this content:
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.7.0")
which adds the play sbt plugin (specifically play 2.7.0 - use another version if you need).
Then type reload in your sbt shell to restart the shell.
add a comment |
You should bring the play plugin in project/plugins.sbt:
In your project directory, inside the project dir, create a file called plugins.sbt and add to it this content:
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.7.0")
which adds the play sbt plugin (specifically play 2.7.0 - use another version if you need).
Then type reload in your sbt shell to restart the shell.
You should bring the play plugin in project/plugins.sbt:
In your project directory, inside the project dir, create a file called plugins.sbt and add to it this content:
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.7.0")
which adds the play sbt plugin (specifically play 2.7.0 - use another version if you need).
Then type reload in your sbt shell to restart the shell.
edited Mar 23 at 16:29
answered Mar 23 at 16:19
dvirdvir
1,14511211
1,14511211
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55315675%2ferror-while-compiling-scala-play-application%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
You shouldn't really be putting
addSbtPluginlines in your build.sbt file - this is what /project/plugins.sbt is for.– James Whiteley
Mar 23 at 21:06
can you add the contents of
/project/plugins.sbtto your question?– pme
Mar 24 at 8:02