mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
12 lines
271 B
Ruby
12 lines
271 B
Ruby
if ENV['JAVA']
|
|
|
|
require 'rake/javaextensiontask'
|
|
|
|
# build http11 java extension
|
|
Rake::JavaExtensionTask.new('http11', HOE.spec) do |ext|
|
|
ext.java_compiling do |gs|
|
|
gs.dependencies.delete gs.dependencies.find { |d| d.name == 'daemons' }
|
|
end
|
|
end
|
|
|
|
end
|