Sha256: d8832b1001d5310c41c53f32fadc64f3f5aa8b62407319b5f4950f9e2fe85025
Contents?: true
Size: 1.89 KB
Versions: 28
Compression:
Stored size: 1.89 KB
Contents
# 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. require 'buildr/core/project' require 'buildr/core/common' module Buildr module Eclipse module Java include Extension NATURE = 'org.eclipse.jdt.core.javanature' CONTAINER = 'org.eclipse.jdt.launching.JRE_CONTAINER' BUILDER = 'org.eclipse.jdt.core.javabuilder' after_define do |project| eclipse = project.eclipse # smart defaults if project.compile.language == :java || project.test.compile.language == :java eclipse.natures = NATURE if eclipse.natures.empty? eclipse.classpath_containers = CONTAINER if eclipse.classpath_containers.empty? eclipse.builders = BUILDER if eclipse.builders.empty? end # :java nature explicitly set if eclipse.natures.include? :java eclipse.natures += [NATURE] unless eclipse.natures.include? NATURE eclipse.classpath_containers += [CONTAINER] unless eclipse.classpath_containers.include? CONTAINER eclipse.builders += [BUILDER] unless eclipse.builders.include? BUILDER end end end end end class Buildr::Project include Buildr::Eclipse::Java end
Version data entries
28 entries across 28 versions & 4 rubygems