Is there a good recourse on how to setup/use scala project with maven?

I've installed maven that comes with lift. Project is created with
Eclipse maven plugin (q4e http://code.google.com/p/q4e/). I build and
install scala project to local repository fine.
I can also run project using "mvn scala:run" command from project
folder.
Now I need to run project from repository and I cannot figure out how
to do so. Would I need to use "mvn scala:run"? This will resolve
dependencies and install all required libraries...
Scala plugin is not recognized as it declared only in "pom". I'm
trying to update maven's "settings.xml", adding this:

        <profile>
                <id>env-dev</id>
                <repositories>
                        <repository>
                                <id>scala-tools.org</id>
                                <name>Scala-tools Maven2 Repository</name>
                                <url>http://scala-tools.org/repo-releases</url>
                        </repository>
                </repositories>
                <pluginRepositories>
                        <pluginRepository>
                                <id>org.scala-tools</id>
                                <name>Scala-tools Maven2 Repository</name>
                                <url>http://scala-tools.org/repo-releases</url>
                        </pluginRepository>
                </pluginRepositories>
        </profile>

  </profiles>

  <activeProfiles>
    <activeProfile>env-dev</activeProfile>
  </activeProfiles>


now if I run "mvn scala:run -DmainClass=..." it gives me error:
[ERROR] BUILD ERROR
[INFO]
------------------------------------------------------------------------
[INFO] The plugin 'org.apache.maven.plugins:maven-scala-plugin' does
not exist or no valid version could be found

Maybe there is another way to run project from maven repository?

Next step for me will be installing artifact into private remote
repository (Artifactory) and run project from that remote
repository... Any suggestions?

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to