Sha256: 5aefc91d7002993ddef4af86ca853728a14ab5ee1e20f8ea38224e20d162d0b7

Contents?: true

Size: 822 Bytes

Versions: 2

Compression:

Stored size: 822 Bytes

Contents

# Apache Buildr buildfile for do_sqlite3
# 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']
TARGET_DIR = 'pkg/classes'
repositories.remote << 'http://www.ibiblio.org/maven2/'

define 'do_sqlite3' do
  project.version = VERSION_NUMBER
  project.group = 'data_objects.rb'

  manifest['Copyright'] = 'Alex Coles (C) 2008-2009'

  compile.using :target => '1.5', :lint => 'all', :deprecation => 'true'

  define 'ext-java' do
    package(:jar).clean.include(TARGET_DIR)
        
    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.into(TARGET_DIR).with(JDBC_SUPPORT)
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
do_sqlite3-0.9.11-x86-mswin32-60 buildfile
do_sqlite3-0.9.11 buildfile