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;








0















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 !!!










share|improve this question

















  • 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











  • can you add the contents of /project/plugins.sbt to your question?

    – pme
    Mar 24 at 8:02

















0















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 !!!










share|improve this question

















  • 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











  • can you add the contents of /project/plugins.sbt to your question?

    – pme
    Mar 24 at 8:02













0












0








0








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 !!!










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 23 at 16:05









Chaitanya WaikarChaitanya Waikar

1,700419




1,700419







  • 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











  • can you add the contents of /project/plugins.sbt to your question?

    – pme
    Mar 24 at 8:02












  • 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











  • can you add the contents of /project/plugins.sbt to 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












1 Answer
1






active

oldest

votes


















2














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.






share|improve this answer

























    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
    );



    );













    draft saved

    draft discarded


















    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









    2














    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.






    share|improve this answer





























      2














      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.






      share|improve this answer



























        2












        2








        2







        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.






        share|improve this answer















        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.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 23 at 16:29

























        answered Mar 23 at 16:19









        dvirdvir

        1,14511211




        1,14511211





























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

            용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

            155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해