public
Rubygem
Description: Apache Buildr
Homepage: http://incubator.apache.org/buildr
Clone URL: git://github.com/vic/buildr.git
Search Repo:
commit  805d3faa609259986f3bf18cd513e5d3b972e645
tree    f9fb826f0b9f862f1577d632c5e409e18e0de88b
parent  b9a0106ccf8e00d67f96abc87e2f44262081542c
buildr / buildfile
100644 53 lines (45 sloc) 2.186 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# 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.
 
 
$LOADED_FEATURES << 'jruby' unless RUBY_PLATFORM =~ /java/ # Pretend to have JRuby, keeps Nailgun happy.
require 'buildr/jetty'
require 'buildr/nailgun'
repositories.remote << 'http://repo1.maven.org/maven2'
 
 
define 'buildr' do
  compile.using :source=>'1.4', :target=>'1.4', :debug=>false
 
  define 'java' do
    compile.using(:javac).from(FileList['lib/buildr/java/**/*.java']).into('lib/buildr/java').with(Buildr::Nailgun.artifact)
  end
 
  desc 'Buildr extra packages (Antlr, Cobertura, Hibernate, Javacc, JDepend, Jetty, OpenJPA, XmlBeans)'
  define 'extra', :version=>'1.0' do
    compile.using(:javac).from(FileList['addon/buildr/**/*.java']).into('addon/buildr').with(Buildr::Jetty::REQUIRES)
    # Legals included in source code and show in RDoc.
    legal = 'LICENSE', 'DISCLAIMER', 'NOTICE'
    package(:gem).include(legal).path('lib').include('addon/buildr')
    package(:gem).spec do |spec|
      spec.author = 'Apache Buildr'
      spec.email = 'buildr-user@incubator.apache.org'
      spec.homepage = "http://incubator.apache.org/buildr"
      spec.rubyforge_project = 'buildr'
      spec.extra_rdoc_files = legal
      spec.rdoc_options << '--webcvs' << 'http://svn.apache.org/repos/asf/incubator/buildr/trunk/'
      spec.add_dependency 'buildr', '~> 1.3'
    end
 
    install do
      addon package(:gem)
    end
 
    upload do
    end
  end
end