Sha256: d3831b5734d63d20902b077346bcc8f268c0d323fade508f62481f62add3da23
Contents?: true
Size: 741 Bytes
Versions: 6
Compression:
Stored size: 741 Bytes
Contents
# Apache Buildr buildfile for do_derby # see http://incubator.apache.org/buildr/ for more information on Apache Buildr require 'buildr' require 'pathname' VERSION_NUMBER = '1.0' JDBC_SUPPORT = ['data_objects:jdbc:jar:1.0'] repositories.remote << 'http://www.ibiblio.org/maven2/' define 'do_mysql' do project.version = VERSION_NUMBER project.group = 'data_objects.rb' manifest['Copyright'] = 'Alex Coles (C) 2008' compile.using :target => '1.5', :lint => 'all', :deprecation => 'true' define 'ext-java' do package :jar jdbc_support_jar = file('../../do_jdbc/lib/do_jdbc_internal.jar') jdbc_support = artifact('data_objects:jdbc:jar:1.0').from(jdbc_support_jar) compile.with JDBC_SUPPORT end end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
do_mysql-0.9.10 | buildfile |
do_mysql-0.9.10.1 | buildfile |
do_mysql-0.9.7 | buildfile |
do_mysql-0.9.6 | buildfile |
do_mysql-0.9.8 | buildfile |
do_mysql-0.9.9 | buildfile |