object xml is not a member of package scala

前端 未结 4 800
离开以前
离开以前 2020-12-16 15:08

The following code in the compiler:

abstract class query {def get: Unit => scala.xml.Elem}

gives me the error: \"object xml is not a mem

相关标签:
4条回答
  • 2020-12-16 15:54

    I have the same error, I tried lots of ways. Finally, I found it is the Java Loading dependencies order issue. If I move it to the last one. it works fine for me.

    I modify it in my IntelliJ Idea: cmd-; Project Settings -- Modules -- Dependencies click + in bottom-left -- 2 Library -- From Maven

    0 讨论(0)
  • 2020-12-16 15:57

    Scala-XML has been factored out into a separate library as of Scala 2.11, so it is not included in Scala projects by default. To include it in your project via sbt add this dependency:

    libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "1.0.2"
    
    0 讨论(0)
  • 2020-12-16 15:57

    Update the dependency

    // https://mvnrepository.com/artifact/org.scala-lang.modules/scala-xml_2.12
    libraryDependencies += "org.scala-lang.modules" % "scala-xml_2.12" % "1.0.6"
    
    0 讨论(0)
  • 2020-12-16 16:00

    (This is for Windows at least)

    In Eclipse go to

    Project > Properties

    On the windows that appears (should be on Java Build Path on the left) choose the "libraries" section and click on "Add External JARs".

    Navigate to your installation folder and then to the "lib" folder (usually

    C:\Program Files (x86)\scala\lib

    or

    C:\Program Files\scala\lib

    )

    and add

    scala-xml_2.11-1.0.2

    or whatever version you have.

    0 讨论(0)
提交回复
热议问题