Created
April 22, 2011 16:17
-
-
Save jkutner/936973 to your computer and use it in GitHub Desktop.
Bundler+Maven
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mvn 'http://internal.myco.com/artifactory' | |
gem "mvn:org.jboss.logging:jboss-logging", "3.0.0.b.5" | |
gem "mvn:org.multiverse:multiverse-alpha", "0.6.2" | |
gem 'mvn:org.apache.commons:commons-math', '2.2' | |
gem "mvn:org.slf4j:slf4j-simple", "~> 1.6.1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mvn 'https://repository.jboss.org/nexus/content/groups/public-jboss/' do | |
gem "mvn:org.jboss.logging:jboss-logging", "3.0.0.b.5" | |
gem "mvn:org.slf4j:slf4j-simple", "1.6.1" | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mvn ['http://repo1.maven.org/maven2/', 'http://akka.io/repository/'] do | |
gem "mvn:org.multiverse:multiverse-alpha", "0.6.2" | |
gem "mvn:se.scalablesolutions.akka:akka-stm", "1.0" | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem "mvn:org.jboss.logging:jboss-logging", "3.0.0.b.5", :mvn => 'https://repository.jboss.org/nexus/content/groups/public-jboss' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem "mvn:org.slf4j:slf4j-simple", "1.6.1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'java' | |
require 'rubygems' | |
require 'bundler/setup' | |
require 'mvn:org.slf4j:slf4j-simple' | |
logger = org.slf4j.LoggerFactory.getLogger("world") | |
logger.info("hello") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone git://github.com/jkutner/bundler.git | |
cd bundler | |
git checkout master | |
jruby -S rake install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment