integrate maven gemify to install maven artifacts as rubygems
-------------------------------------------------------------

                 Key: JRUBY-5102
                 URL: http://jira.codehaus.org/browse/JRUBY-5102
             Project: JRuby
          Issue Type: New Feature
            Reporter: kristian meier
            Assignee: Thomas E Enebo
         Attachments: gemify.patch

first you need maven3 release candidate or later:

https://repository.apache.org/content/repositories/maven-006/org/apache/maven/apache-maven/3.0-RC2/

setup your settings.xml to find the snapshot of the needed gemify-maven-plugin:

<settings>
  <profiles>
    <profile>
      <id>sonatype-snapshots</id>
      <pluginRepositories>
        <pluginRepository>
          <id>sonatype-snapshots</id>
          <name>Sonatype Maven Repository</name>
          <url>http://oss.sonatype.org/content/groups/staging</url>
          <releases>
            <enabled>false</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
            <updatePolicy>daily</updatePolicy>
          </snapshots>
        </pluginRepository>
      </pluginRepositories>
    </profile>
  </profiles>

  <activeProfiles>
    <activeProfile>sonatype-snapshots</activeProfile>
  </activeProfiles>
</settings>

then after applying the patch on jruby master you should be able to do 
something like:
$ gem install org.slf4j.slf4j-log4j12

maven3 heads a release on 1st October after this a release of the gemify plugin 
is anytime possible anytime. the plugin has some tests but before releasing the 
plugin I will include tests/specs for this patch.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to