Created
April 16, 2012 21:00
-
-
Save mguymon/2401487 to your computer and use it in GitHub Desktop.
lockjar buildfile
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 'lock_jar/buildr' | |
# app definition, inherited into all projects | |
lock_jar do | |
repository 'http://repository.jboss.org/nexus/content/groups/public-jboss' | |
scope 'test' do | |
jar 'junit:junit:jar:4.10' | |
end | |
end | |
define 'app' do | |
def 'project1' do | |
lock_jar do | |
jar "org.apache.mina:mina-core:2.0.4" | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment