Re: [Lift] lift-archetype-blank 1.1-M8 2.0-M1 : missing net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1

2010-02-07 Thread Naftoli Gugenheim
The blank archetype uses retrotranslator? Why?

-
Luke  Nezdalne...@gmail.com wrote:

Hello -

I am just getting started with Lift and used the Hello, World
archetype lift-archetype-blank (tried 1.1-M8  2.0-M1) and both fail
to build successfully from the specified public Maven repositories
with:

Missing:
--
1) net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1
...
 Path to dependency:
1) net.sf.alchim:yuicompressor-maven-plugin:maven-plugin:0.7.1
2) net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1

I stfw'd a bit and found Apache Tiles was able to resolve it (http://
tiles.apache.org/2.0/framework/tiles-assembly/dependencies.html -
Dependency Repository Locations - Artifact -
net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1) at
atlassian-public/ https://maven.atlassian.com/repository/public;,
however I have still failed to determine the correct Maven pom
incantation to get this to install itself.  I tried:

  repositories
repository
  idscala-tools.releases/id
  nameScala-Tools Maven2 Repository for Releases/name
  urlhttp://scala-tools.org/repo-releases/url
/repository
repository
  idatlassian-public/id
  urlhttps://maven.atlassian.com/repository/public/url
/repository
  /repositories

and for good measure

  pluginRepositories
pluginRepository
  idscala-tools.org/id
  nameScala-Tools Maven2 Repository/name
  urlhttp://scala-tools.org/repo-releases/url
/pluginRepository
pluginRepository
  idatlassian-public/id
  urlhttps://maven.atlassian.com/repository/public/url
/pluginRepository
  /pluginRepositories

Ultimately, I just removed the offending plugin:
  plugin
groupIdnet.sf.alchim/groupId
artifactIdyuicompressor-maven-plugin/artifactId
...
  /plugin

This was a lot bumpier than I was hoping for, but a typical Maven
experience :/  Anyone know what the proper course of action is here ?
Add some other repo (maybe in some other way), or something else?  Are
1.1-M8 and/or 2.0-M1 just not meant for folks to try out?  I'll see if
1.0.3 is the same and report back.

Thanks in advance,
- Luke

-- 
You received this message because you are subscribed to the Google Groups 
Lift group.
To post to this group, send email to lift...@googlegroups.com.
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Lift group.
To post to this group, send email to lift...@googlegroups.com.
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en.



[Lift] lift-archetype-blank 1.1-M8 2.0-M1 : missing net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1

2010-02-06 Thread Luke Nezda
Hello -

I am just getting started with Lift and used the Hello, World
archetype lift-archetype-blank (tried 1.1-M8  2.0-M1) and both fail
to build successfully from the specified public Maven repositories
with:

Missing:
--
1) net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1
...
 Path to dependency:
1) net.sf.alchim:yuicompressor-maven-plugin:maven-plugin:0.7.1
2) net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1

I stfw'd a bit and found Apache Tiles was able to resolve it (http://
tiles.apache.org/2.0/framework/tiles-assembly/dependencies.html -
Dependency Repository Locations - Artifact -
net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1) at
atlassian-public/ https://maven.atlassian.com/repository/public;,
however I have still failed to determine the correct Maven pom
incantation to get this to install itself.  I tried:

  repositories
repository
  idscala-tools.releases/id
  nameScala-Tools Maven2 Repository for Releases/name
  urlhttp://scala-tools.org/repo-releases/url
/repository
repository
  idatlassian-public/id
  urlhttps://maven.atlassian.com/repository/public/url
/repository
  /repositories

and for good measure

  pluginRepositories
pluginRepository
  idscala-tools.org/id
  nameScala-Tools Maven2 Repository/name
  urlhttp://scala-tools.org/repo-releases/url
/pluginRepository
pluginRepository
  idatlassian-public/id
  urlhttps://maven.atlassian.com/repository/public/url
/pluginRepository
  /pluginRepositories

Ultimately, I just removed the offending plugin:
  plugin
groupIdnet.sf.alchim/groupId
artifactIdyuicompressor-maven-plugin/artifactId
...
  /plugin

This was a lot bumpier than I was hoping for, but a typical Maven
experience :/  Anyone know what the proper course of action is here ?
Add some other repo (maybe in some other way), or something else?  Are
1.1-M8 and/or 2.0-M1 just not meant for folks to try out?  I'll see if
1.0.3 is the same and report back.

Thanks in advance,
- Luke

-- 
You received this message because you are subscribed to the Google Groups 
Lift group.
To post to this group, send email to lift...@googlegroups.com.
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en.



Re: [Lift] lift-archetype-blank 1.1-M8 2.0-M1 : missing net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1

2010-02-06 Thread David Bernard
retrotranslator-runtime version 1.2.1 is available in central
repository (the default one) since 2007.
see : 
http://repo2.maven.org/maven2/net/sf/retrotranslator/retrotranslator-runtime/1.2.1/

May be you tried to build offline, or you define/use wrong
mirror/proxy of central repository.
Do you have a custom $HOME/.m2/settings.xml (with mirror or repository
section) ?

When maven report report missing artifact, it also report the list of
repository from where it try to download, what is the 'full' content
of the missing message ?

/davidB

On Sat, Feb 6, 2010 at 22:36, Luke  Nezda lne...@gmail.com wrote:
 Hello -

 I am just getting started with Lift and used the Hello, World
 archetype lift-archetype-blank (tried 1.1-M8  2.0-M1) and both fail
 to build successfully from the specified public Maven repositories
 with:

 Missing:
 --
 1) net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1
 ...
  Path to dependency:
        1) net.sf.alchim:yuicompressor-maven-plugin:maven-plugin:0.7.1
        2) net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1

 I stfw'd a bit and found Apache Tiles was able to resolve it (http://
 tiles.apache.org/2.0/framework/tiles-assembly/dependencies.html -
 Dependency Repository Locations - Artifact -
 net.sf.retrotranslator:retrotranslator-runtime:jar:1.2.1) at
 atlassian-public/ https://maven.atlassian.com/repository/public;,
 however I have still failed to determine the correct Maven pom
 incantation to get this to install itself.  I tried:

  repositories
    repository
      idscala-tools.releases/id
      nameScala-Tools Maven2 Repository for Releases/name
      urlhttp://scala-tools.org/repo-releases/url
    /repository
    repository
      idatlassian-public/id
      urlhttps://maven.atlassian.com/repository/public/url
    /repository
  /repositories

 and for good measure

  pluginRepositories
    pluginRepository
      idscala-tools.org/id
      nameScala-Tools Maven2 Repository/name
      urlhttp://scala-tools.org/repo-releases/url
    /pluginRepository
    pluginRepository
      idatlassian-public/id
      urlhttps://maven.atlassian.com/repository/public/url
    /pluginRepository
  /pluginRepositories

 Ultimately, I just removed the offending plugin:
      plugin
        groupIdnet.sf.alchim/groupId
        artifactIdyuicompressor-maven-plugin/artifactId
        ...
      /plugin

 This was a lot bumpier than I was hoping for, but a typical Maven
 experience :/  Anyone know what the proper course of action is here ?
 Add some other repo (maybe in some other way), or something else?  Are
 1.1-M8 and/or 2.0-M1 just not meant for folks to try out?  I'll see if
 1.0.3 is the same and report back.

 Thanks in advance,
 - Luke

 --
 You received this message because you are subscribed to the Google Groups 
 Lift group.
 To post to this group, send email to lift...@googlegroups.com.
 To unsubscribe from this group, send email to 
 liftweb+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/liftweb?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Lift group.
To post to this group, send email to lift...@googlegroups.com.
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en.