blob: 80220c780bcf9c6615294567fbfee837ae6ac6c3 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with this
# work for additional information regarding copyright ownership. The ASF
# licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
module Buildr #:nodoc:
module Compiler #:nodoc:
class Ecj < Javac
VERSION = "4.5.1"
class << self
# Current version of ECJ being used.
def version
Buildr.settings.build['ecj'] || VERSION
end
# ECJ classpath dependencies.
def dependencies
@dependencies ||= ["org.eclipse.jdt.core.compiler:ecj:jar:#{version}"]
end
end
OPTIONS = Buildr::Compiler::Javac::OPTIONS
specify :language=>:java, :sources => 'java', :source_ext => 'java',
:target=>'classes', :target_ext=>'class', :packaging=>:jar
def compile(sources, target, dependencies) #:nodoc:
check_options options, OPTIONS
cmd_args = []
# tools.jar contains the Java compiler.
dependencies << Java.tools_jar if Java.tools_jar
cmd_args << '-classpath' << ('"' + dependencies.join(File::PATH_SEPARATOR) + '"') unless dependencies.empty?
source_paths = sources.select { |source| File.directory?(source) }
cmd_args << '-sourcepath' << source_paths.join(File::PATH_SEPARATOR) unless source_paths.empty?
cmd_args << '-d' << File.expand_path(target)
cmd_args += ecj_args
cmd_args += files_from_sources(sources)
unless Buildr.application.options.dryrun
trace((%w[javac -classpath org.eclipse.jdt.internal.compiler.batch.Main] + cmd_args).join(' '))
Java.load
Java.org.eclipse.jdt.internal.compiler.batch.Main.compile(cmd_args.join(" ")) or
fail 'Failed to compile, see errors above'
end
end
private
# See arg list here: http://publib.boulder.ibm.com/infocenter/rsahelp/v7r0m0/index.jsp?topic=/org.eclipse.jdt.doc.isv/guide/jdt_api_compile.htm
def ecj_args #:nodoc:
args = []
args << '-warn:none' unless options[:warnings]
args << '-verbose' if trace?(:ecj)
args << '-g' if options[:debug]
args << '-deprecation' if options[:deprecation]
args << '-source' << options[:source].to_s if options[:source]
args << '-target' << options[:target].to_s if options[:target]
case options[:lint]
when Array then args << "-Xlint:#{options[:lint].join(',')}"
when String then args << "-Xlint:#{options[:lint]}"
when true then args << '-Xlint'
end
args + Array(options[:other])
end
end
end
end
Java.classpath << lambda { Buildr::Compiler::Ecj.dependencies }
Buildr::Compiler.compilers << Buildr::Compiler::Ecj