This repository has been archived by the owner on Aug 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathbuildr.buildfile
63 lines (54 loc) · 2.5 KB
/
buildr.buildfile
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
54
55
56
57
58
59
60
61
62
63
# 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/jetty6'
require 'buildr/nailgun'
require 'buildr/scala'
require 'buildr/kotlin'
repositories.remote << 'https://repo1.maven.org/maven2'
repositories.remote << 'https://oss.sonatype.org/content/groups/scala-tools'
define 'buildr' do
compile.using :source=>'1.7', :target=>'1.7', :debug=>false
define 'java' do
compile.using(:javac).from(FileList['lib/buildr/java/**/*.java']).into('lib/buildr/java')
end
define 'scala' do
compile.using(:javac).from(FileList['lib/buildr/scala/**/*.java']).into('lib/buildr/scala')
end
define 'kotlin' do
compile.using(:javac).from(FileList['lib/buildr/kotlin/**/*.java']).into('lib/buildr/kotlin').with(Buildr::Kotlin::Kotlinc.dependencies)
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, Buildr::Jetty6::REQUIRES, Buildr::Nailgun::ARTIFACT_SPEC)
# Legals included in source code and show in RDoc.
legal = 'LICENSE', 'NOTICE'
package(:gem).include(legal).path('lib').include('addon/buildr')
package(:gem).spec do |spec|
spec.author = 'Apache Buildr'
spec.email = '[email protected]'
spec.homepage = "http://buildr.apache.org"
spec.extra_rdoc_files = legal
spec.rdoc_options << '--webcvs' << 'https://github.com/apache/buildr'
spec.add_dependency 'buildr', '~> 1.3'
end
install do
addon package(:gem)
end
upload do
end
end
end