Skip to content
This repository has been archived by the owner on Apr 17, 2018. It is now read-only.

Fix the jdbc-sqlite3 version #73

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion do_sqlite3/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ path '../'
gemspec

platforms :jruby do
gem 'jdbc-sqlite3', '>=3.5.8'
gem 'jdbc-sqlite3', '~> 3.7.2'
gem 'do_jdbc', '0.10.14'
end

Expand Down
2 changes: 1 addition & 1 deletion do_sqlite3/tasks/compile.rake
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ begin
ext.debug = ENV.has_key?('DO_JAVA_DEBUG') && ENV['DO_JAVA_DEBUG']
ext.classpath = '../do_jdbc/lib/do_jdbc_internal.jar'
ext.java_compiling do |gem|
gem.add_dependency 'jdbc-sqlite3', '>=3.5.8'
gem.add_dependency 'jdbc-sqlite3', '~> 3.7.2'
gem.add_dependency 'do_jdbc', '0.10.14'
end
end
Expand Down