How do I find the correct Maven archetype project for developing with Scala in Eclipse?

前端 未结 4 1661
伪装坚强ぢ
伪装坚强ぢ 2020-12-23 14:54

I\'m having problems trying to just create a Maven project using Scala (v2.11.6) within Eclipse (Luna). The instructions here says to install both plugins below.

    <
相关标签:
4条回答
  • 2020-12-23 15:20

    Here's how I got it to work. It seems all the archetypes aren't available, so based on this answer, I created a remote catalog

    Before

    Image showing the original dialog with missing entry

    So do this

    Go to [Windows] → [Preferences] → [Maven] → [Archetypes] → Add Remote Catalog and create the catalog, then Apply

    Image showing "Remote Archetype Catalog" modal window

    For copy-pasting:

    • Catalog File: http://repo1.maven.org/maven2/archetype-catalog.xml
    • Description: Remote Archetypes

    Go back to creating a new Maven project. Select the Remote Catalog from the dropdown. It will take a few moments to gather all the archetypes. You can see the progress at the very bottom right of the IDE. When it's done, you should be able to see the archetypes

    After

    Image showing "scala-archetype" entry in the dialog

    Create your project with groupId and artifactId and such.

    Right click the project, then from the context menu [Run As] &rarr [Maven Build]. In the dialog, type clean package into the goals. The run. The project should build and run the tests.

    For me at first I got an error on the build. It was because my default environment is using Java 8. I'm pretty new to Scala, so I'm not sure is there is a problem with Scala and Java 8 or not (I think it's the Scala version in the pom (2.10.0)). But what I did to get it to work was just change the Java version used in the IDE to Java 7.

    Basically just go to [Windows] → [Preferenes] → [Java] → [Installed JREs] → Add → [System VM] → Next → Directory → Find the directory of the Java home (version 7) → Finish → Then in the list tick Java 7.

    Then build again. It should work. Good Luck!

    0 讨论(0)
  • 2020-12-23 15:21

    One point I want to add, If you are getting following error while installing the archetype showed in image 1

    Can't resolve Archetype org.glassfish.jersey.archetypes:jersey-quickstart-webapp:2.21 org.eclipse.core.runtime.CoreException: Could not resolve artifact org.glassfish.jersey.archetypes:jersey-quickstart-webapp:pom:2.21

    Image 1:

    Then before procedding with the solution specified above, try to complete these steps in eclipse.

    0 讨论(0)
  • 2020-12-23 15:29

    After you have successfully created the scala-maven project as described above, you will probably see an error "Type not found: type JUnitRunner specs.scala". In that case, manually add the following XML snippet to your pom.

    <dependency>
        <groupId>org.specs2</groupId>
        <artifactId>specs2-junit_${scala.compat.version}</artifactId>
        <version>2.4.16</version>
        <scope>test</scope>
    </dependency>
    

    Moreover, to avoid errors when running mvn test,

    [ERROR] scalac error: bad option: '-make:transitive'
    

    You also need to delete the following line from the pom.xml file:

    <arg>-make:transitive</arg>
    
    0 讨论(0)
  • 2020-12-23 15:34

    I faced the same problem and chanced upon this SO question, as well as the answer, given by @peeskillet (many thanks). I am using:

    • Maven 3.3.3
    • Eclipse Luna Scala IDE 4.0.0.-vfinal-20150305-1644-Typesafe
    • Scala 2.11.6
    • JDK 1.8

    After following the steps exactly as given here, I hit a wall. When I chose the right archetype (net.alchim31.maven), I was greeted with this error: Could not resolve artifact net.alchim31.maven:scala-archetype-simple:pom:1.5 Suspecting that the maven embedded in eclipse was acting funny, I visited [Windows] -> [Maven] -> [Installations] and added local installation of maven (whatever is set to M2_HOME in my shell). But, no luck!

    Exasperated, I visited this site: Scala Doc and switched back to command-line as this page instructs. Surprisingly (to me, at least), it worked. A maven-Scala project was created in the present directory, which I could import into Eclipse.

    Just so that I am not misunderstood, I am not suggesting that @peeskillet's answer is wrong. Just wanted to share another way of creating a maven-scala project on Eclipse, in case it helps someone. I have not yet understood, why Eclipse-Scala-IDE is yet to give that 'Aha' feeling.

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