[Lift] Re: scala+maven

2009-07-29 Thread ph
Thanks a lot everybody for replies. I think I'm quite clear what I need to do. The reason why I wanted to use Maven in Production environment is to make it easier to deploy new version to private remote repository and upgrade local repositories when new version in private remote repository is avai

[Lift] Re: scala+maven

2009-07-29 Thread Mark McBride
Yeah, I have no real attachment to any specific repo manager. I do know that for us, managing it as a filesystem is pretty painful. ph, I'd suggest you break this down into steps and get each one working before moving on to the next. What I would do: 1) Make sure you can build your project on

[Lift] Re: scala+maven

2009-07-29 Thread David Bernard
I higlhy suggest you use a solution like nexus (IMO better than artifactory to install/manage). On Wed, Jul 29, 2009 at 17:07, Mark McBride wrote: > > I distilled at least two questions from this > > 1) How do I use scala artifacts from a private remote repository (i.e. > I don't need to go outs

[Lift] Re: scala+maven

2009-07-29 Thread Mark McBride
I distilled at least two questions from this 1) How do I use scala artifacts from a private remote repository (i.e. I don't need to go outside my own network to download artifacts)? 2) How do I define the scala repositories in settings.xml instead of in every pom.xml file? We actually do somethi

[Lift] Re: scala+maven

2009-07-29 Thread David Bernard
A very quick workflow about web dev in the java world : 1. developer create/work on a webapp 2. developer package the webapp into a archive my-webapp.war (who include lift in your case) ('mvn package'), developer give the .war to deployer team + some configuration instruction (eg : how to configure

[Lift] Re: scala+maven

2009-07-29 Thread ph
This maybe dumb question, but I new to Java/Maven and cannot find any good resources that would describe whole building, deployment, binaries running workflow... Here I probably need to describe what I'm trying to do (maybe this is completely wrong approach I'm trying to implement). We have Window

[Lift] Re: scala+maven

2009-07-29 Thread ph
If I have private remote repository, I deploy there a new binaries, then all my servers need to run those binaries. I would need to get them to local repository and run locally. What would be a right workflow for that? On Jul 29, 4:54 am, David Bernard wrote: > Hi, > > I don't understand what

[Lift] Re: scala+maven

2009-07-29 Thread Mark Essel
Actually this is relevant to some problems I was having simply getting a nice sandbox to learn scala/lift with eclipse. Thank to the original poster and the good folks who answered. Bookmarking http://blog.getintheloop.eu/2008/12/19/enabling-launchers-and-warnings-with-scala-maven-plugin for later

[Lift] Re: scala+maven

2009-07-29 Thread David Bernard
Hi, I don't understand what you try to do and what you mean by "Now I need to run project from repository" ? Could you provide the use case ? I also copy/move to the mailing-list maven-and-scala. /davidB On Tue, Jul 28, 2009 at 23:16, ph wrote: > > Maybe better question would be: > How to ru

[Lift] Re: scala+maven

2009-07-28 Thread ph
Maybe better question would be: How to run scala artifact from maven repository (local and/or private remote)? On Jul 28, 3:28 pm, Timothy Perrett wrote: > Hey there, > > I wrote an article previously about how to use launchers with maven- > scala-plugin, find it here:http://is.gd/1RuLQ > > Does

[Lift] Re: scala+maven

2009-07-28 Thread ph
That allows to pre-set arguments and main class to launch, but to get there I need first to be able to specify scala plugin in maven's settings.xml, which I'm struggling to do right now... And maven-scala-plugin manual is here http://scala-tools.org/mvnsites/maven-scala-plugin/, but id describes

[Lift] Re: scala+maven

2009-07-28 Thread Timothy Perrett
Hey there, I wrote an article previously about how to use launchers with maven- scala-plugin, find it here: http://is.gd/1RuLQ Does that help? Cheers, Tim On Jul 28, 7:32 pm, ph wrote: > Is there a good recourse on how to setup/use scala project with maven? > > I've installed maven that comes