realityforge-buildr 1.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +5 -0
- data/LICENSE +176 -0
- data/NOTICE +26 -0
- data/README.md +3 -0
- data/Rakefile +50 -0
- data/addon/buildr/checkstyle-report.xsl +104 -0
- data/addon/buildr/checkstyle.rb +254 -0
- data/addon/buildr/git_auto_version.rb +36 -0
- data/addon/buildr/gpg.rb +90 -0
- data/addon/buildr/gwt.rb +413 -0
- data/addon/buildr/jacoco.rb +161 -0
- data/addon/buildr/pmd.rb +185 -0
- data/addon/buildr/single_intermediate_layout.rb +71 -0
- data/addon/buildr/spotbugs.rb +265 -0
- data/addon/buildr/top_level_generate_dir.rb +37 -0
- data/addon/buildr/wsgen.rb +192 -0
- data/bin/buildr +20 -0
- data/buildr.gemspec +61 -0
- data/lib/buildr.rb +86 -0
- data/lib/buildr/core/application.rb +705 -0
- data/lib/buildr/core/assets.rb +96 -0
- data/lib/buildr/core/build.rb +587 -0
- data/lib/buildr/core/common.rb +167 -0
- data/lib/buildr/core/compile.rb +599 -0
- data/lib/buildr/core/console.rb +124 -0
- data/lib/buildr/core/doc.rb +275 -0
- data/lib/buildr/core/environment.rb +128 -0
- data/lib/buildr/core/filter.rb +405 -0
- data/lib/buildr/core/help.rb +114 -0
- data/lib/buildr/core/progressbar.rb +161 -0
- data/lib/buildr/core/project.rb +994 -0
- data/lib/buildr/core/test.rb +776 -0
- data/lib/buildr/core/transports.rb +456 -0
- data/lib/buildr/core/util.rb +77 -0
- data/lib/buildr/ide/idea.rb +1664 -0
- data/lib/buildr/java/commands.rb +230 -0
- data/lib/buildr/java/compiler.rb +85 -0
- data/lib/buildr/java/custom_pom.rb +300 -0
- data/lib/buildr/java/doc.rb +62 -0
- data/lib/buildr/java/packaging.rb +393 -0
- data/lib/buildr/java/pom.rb +191 -0
- data/lib/buildr/java/test_result.rb +54 -0
- data/lib/buildr/java/tests.rb +111 -0
- data/lib/buildr/packaging/archive.rb +586 -0
- data/lib/buildr/packaging/artifact.rb +1113 -0
- data/lib/buildr/packaging/artifact_namespace.rb +1010 -0
- data/lib/buildr/packaging/artifact_search.rb +138 -0
- data/lib/buildr/packaging/package.rb +237 -0
- data/lib/buildr/packaging/version_requirement.rb +189 -0
- data/lib/buildr/packaging/zip.rb +189 -0
- data/lib/buildr/packaging/ziptask.rb +387 -0
- data/lib/buildr/version.rb +18 -0
- data/rakelib/release.rake +99 -0
- data/spec/addon/checkstyle_spec.rb +58 -0
- data/spec/core/application_spec.rb +576 -0
- data/spec/core/build_spec.rb +922 -0
- data/spec/core/common_spec.rb +670 -0
- data/spec/core/compile_spec.rb +656 -0
- data/spec/core/console_spec.rb +65 -0
- data/spec/core/doc_spec.rb +194 -0
- data/spec/core/extension_spec.rb +200 -0
- data/spec/core/project_spec.rb +736 -0
- data/spec/core/test_spec.rb +1131 -0
- data/spec/core/transport_spec.rb +452 -0
- data/spec/core/util_spec.rb +154 -0
- data/spec/ide/idea_spec.rb +1952 -0
- data/spec/java/commands_spec.rb +79 -0
- data/spec/java/compiler_spec.rb +274 -0
- data/spec/java/custom_pom_spec.rb +165 -0
- data/spec/java/doc_spec.rb +55 -0
- data/spec/java/packaging_spec.rb +786 -0
- data/spec/java/pom_spec.rb +162 -0
- data/spec/java/test_coverage_helper.rb +257 -0
- data/spec/java/tests_spec.rb +224 -0
- data/spec/packaging/archive_spec.rb +686 -0
- data/spec/packaging/artifact_namespace_spec.rb +757 -0
- data/spec/packaging/artifact_spec.rb +1351 -0
- data/spec/packaging/packaging_helper.rb +63 -0
- data/spec/packaging/packaging_spec.rb +690 -0
- data/spec/sandbox.rb +166 -0
- data/spec/spec_helpers.rb +420 -0
- data/spec/version_requirement_spec.rb +145 -0
- data/spec/xpath_matchers.rb +123 -0
- metadata +295 -0
@@ -0,0 +1,145 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one or more
|
2
|
+
# contributor license agreements. See the NOTICE file distributed with this
|
3
|
+
# work for additional information regarding copyright ownership. The ASF
|
4
|
+
# licenses this file to you under the Apache License, Version 2.0 (the
|
5
|
+
# "License"); you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
12
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
13
|
+
# License for the specific language governing permissions and limitations under
|
14
|
+
# the License.
|
15
|
+
|
16
|
+
|
17
|
+
require File.expand_path(File.join(File.dirname(__FILE__), 'spec_helpers'))
|
18
|
+
|
19
|
+
describe Buildr::VersionRequirement, '.create' do
|
20
|
+
def create(str)
|
21
|
+
Buildr::VersionRequirement.create(str)
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'should complain on invalid input' do
|
25
|
+
lambda { create }.should raise_error(Exception)
|
26
|
+
lambda { create('%') }.should raise_error(Exception, /invalid character/)
|
27
|
+
lambda { create('1#{0}') }.should raise_error(Exception, /invalid character/)
|
28
|
+
lambda { create('1.0rc`exit`') }.should raise_error(Exception, /invalid character/)
|
29
|
+
lambda { create(1.0) }.should raise_error(Exception)
|
30
|
+
lambda { create('1.0') }.should_not raise_error(Exception)
|
31
|
+
lambda { create('1.0rc3') }.should_not raise_error(Exception)
|
32
|
+
end
|
33
|
+
|
34
|
+
it 'should allow versions using hyphen' do
|
35
|
+
lambda { create('1.0-rc3') }.should_not raise_error(Exception)
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'should create a single version requirement' do
|
39
|
+
create('1.0').should_not be_composed
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'should create a composed version requirement' do
|
43
|
+
create('1.0 | 2.1').should be_composed
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
=begin
|
48
|
+
# TODO: Fix this.
|
49
|
+
# 1. Can't use should_satisfy, this breaks under RSpec 1.2
|
50
|
+
# 2. These should_satisfy calls are not proper specs since the subject is
|
51
|
+
# the satistifed_by? method. satisfied_by should satisfy???
|
52
|
+
describe Buildr::VersionRequirement, '#satisfied_by?' do
|
53
|
+
def should_satisfy(str, valids = [], invalids = [])
|
54
|
+
req = Buildr::VersionRequirement.create(str)
|
55
|
+
valids.each { |v| req.should be_satisfied_by(v) }
|
56
|
+
invalids.each { |v| req.should_not be_satisfied_by(v) }
|
57
|
+
end
|
58
|
+
|
59
|
+
it 'should accept Gem version operators' do
|
60
|
+
should_satisfy '1.0', %w(1 1.0), %w(1.1 0.1)
|
61
|
+
should_satisfy '=1.0', %w(1 1.0), %w(1.1 0.1)
|
62
|
+
should_satisfy '= 1.0', %w(1 1.0), %w(1.1 0.1)
|
63
|
+
should_satisfy '!= 1.0', %w(0.9 1.1 2), %w(1 1.0 1.0.0)
|
64
|
+
|
65
|
+
should_satisfy '>1.0', %w(1.0.1), %w(1 1.0 0.1)
|
66
|
+
should_satisfy '>=1.0', %w(1.0.1 1 1.0), %w(0.9)
|
67
|
+
|
68
|
+
should_satisfy '<1.0', %w(0.9 0.9.9), %w(1 1.0 1.1 2)
|
69
|
+
should_satisfy '<=1.0', %w(0.9 0.9.9 1 1.0), %w(1.1 2)
|
70
|
+
|
71
|
+
should_satisfy '~> 1.2.3', %w(1.2.3 1.2.3.4 1.2.4), %w(1.2.1 0.9 1.4 2)
|
72
|
+
end
|
73
|
+
|
74
|
+
it 'should accept logic not operator' do
|
75
|
+
should_satisfy 'not 0.5', %w(0 1), %w(0.5)
|
76
|
+
should_satisfy '! 0.5', %w(0 1), %w(0.5)
|
77
|
+
should_satisfy '!= 0.5', %w(0 1), %w(0.5)
|
78
|
+
should_satisfy '!<= 0.5', %w(0.5.1 2), %w(0.5)
|
79
|
+
end
|
80
|
+
|
81
|
+
it 'should accept logic or operator' do
|
82
|
+
should_satisfy '0.5 or 2.0', %w(0.5 2.0), %w(1.0 0.5.1 2.0.9)
|
83
|
+
should_satisfy '0.5 | 2.0', %w(0.5 2.0), %w(1.0 0.5.1 2.0.9)
|
84
|
+
end
|
85
|
+
|
86
|
+
it 'should accept logic and operator' do
|
87
|
+
should_satisfy '>1.5 and <2.0', %w(1.6 1.9), %w(1.5 2 2.0)
|
88
|
+
should_satisfy '>1.5 & <2.0', %w(1.6 1.9), %w(1.5 2 2.0)
|
89
|
+
end
|
90
|
+
|
91
|
+
it 'should assume logic and if missing operator between expressions' do
|
92
|
+
should_satisfy '>1.5 <2.0', %w(1.6 1.9), %w(1.5 2 2.0)
|
93
|
+
end
|
94
|
+
|
95
|
+
it 'should allow combining logic operators' do
|
96
|
+
should_satisfy '>1.0 | <2.0 | =3.0', %w(1.5 3.0 1 2 4)
|
97
|
+
should_satisfy '>1.0 & <2.0 | =3.0', %w(1.3 3.0), %w(1 2)
|
98
|
+
should_satisfy '=1.0 | <2.0 & =0.5', %w(0.5 1.0), %w(1.1 0.1 2)
|
99
|
+
should_satisfy '~>1.1 | ~>1.3 | ~>1.5 | 2.0', %w(2 1.5.6 1.1.2 1.1.3), %w(1.0.9 0.5 2.2.1)
|
100
|
+
should_satisfy 'not(2) | 1', %w(1 3), %w(2)
|
101
|
+
end
|
102
|
+
|
103
|
+
it 'should allow using parens to group logic expressions' do
|
104
|
+
should_satisfy '(1.0)', %w(1 1.0), %w(0.9 1.1)
|
105
|
+
should_satisfy '!( !(1.0) )', %w(1 1.0), %w(0.9 1.1)
|
106
|
+
should_satisfy '1 | !(2 | 3)', %w(1), %w(2 3)
|
107
|
+
should_satisfy '!(2 | 3) | 1', %w(1), %w(2 3)
|
108
|
+
end
|
109
|
+
end
|
110
|
+
=end
|
111
|
+
|
112
|
+
describe Buildr::VersionRequirement, '#default' do
|
113
|
+
it 'should return nil if missing default requirement' do
|
114
|
+
Buildr::VersionRequirement.create('>1').default.should be_nil
|
115
|
+
Buildr::VersionRequirement.create('<1').default.should be_nil
|
116
|
+
Buildr::VersionRequirement.create('!1').default.should be_nil
|
117
|
+
Buildr::VersionRequirement.create('!<=1').default.should be_nil
|
118
|
+
end
|
119
|
+
|
120
|
+
it 'should return the last version with a = requirement' do
|
121
|
+
Buildr::VersionRequirement.create('1').default.should == '1'
|
122
|
+
Buildr::VersionRequirement.create('=1').default.should == '1'
|
123
|
+
Buildr::VersionRequirement.create('<=1').default.should == '1'
|
124
|
+
Buildr::VersionRequirement.create('>=1').default.should == '1'
|
125
|
+
Buildr::VersionRequirement.create('1 | 2 | 3').default.should == '3'
|
126
|
+
Buildr::VersionRequirement.create('1 2 | 3').default.should == '3'
|
127
|
+
Buildr::VersionRequirement.create('1 & 2 | 3').default.should == '3'
|
128
|
+
end
|
129
|
+
end
|
130
|
+
|
131
|
+
describe Buildr::VersionRequirement, '#version?' do
|
132
|
+
it 'should identify valid versions' do
|
133
|
+
Buildr::VersionRequirement.version?('1').should be_true
|
134
|
+
Buildr::VersionRequirement.version?('1a').should be_true
|
135
|
+
Buildr::VersionRequirement.version?('1.0').should be_true
|
136
|
+
Buildr::VersionRequirement.version?('11.0').should be_true
|
137
|
+
Buildr::VersionRequirement.version?(' 11.0 ').should be_true
|
138
|
+
Buildr::VersionRequirement.version?('11.0-alpha').should be_true
|
139
|
+
Buildr::VersionRequirement.version?('r09').should be_true # BUILDR-615: com.google.guava:guava:jar:r09
|
140
|
+
|
141
|
+
Buildr::VersionRequirement.version?('a').should be_false
|
142
|
+
Buildr::VersionRequirement.version?('a1').should be_false
|
143
|
+
Buildr::VersionRequirement.version?('r').should be_false
|
144
|
+
end
|
145
|
+
end
|
@@ -0,0 +1,123 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one or more
|
2
|
+
# contributor license agreements. See the NOTICE file distributed with this
|
3
|
+
# work for additional information regarding copyright ownership. The ASF
|
4
|
+
# licenses this file to you under the Apache License, Version 2.0 (the
|
5
|
+
# "License"); you may not use this file except in compliance with the License.
|
6
|
+
# You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
12
|
+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
13
|
+
# License for the specific language governing permissions and limitations under
|
14
|
+
# the License.
|
15
|
+
|
16
|
+
require 'rexml/document'
|
17
|
+
require 'rexml/element'
|
18
|
+
|
19
|
+
module RSpec
|
20
|
+
module Matchers
|
21
|
+
|
22
|
+
# check if the xpath exists one or more times
|
23
|
+
class HaveXpath
|
24
|
+
def initialize(xpath)
|
25
|
+
@xpath = xpath
|
26
|
+
end
|
27
|
+
|
28
|
+
def matches?(response)
|
29
|
+
@response = response
|
30
|
+
doc = response.is_a?(REXML::Document) ? response : REXML::Document.new(@response)
|
31
|
+
match = REXML::XPath.match(doc, @xpath)
|
32
|
+
!match.empty?
|
33
|
+
end
|
34
|
+
|
35
|
+
def failure_message
|
36
|
+
"Did not find expected xpath #{@xpath}"
|
37
|
+
end
|
38
|
+
|
39
|
+
def negative_failure_message
|
40
|
+
"Did find unexpected xpath #{@xpath}"
|
41
|
+
end
|
42
|
+
|
43
|
+
def description
|
44
|
+
"match the xpath expression #{@xpath}"
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def have_xpath(xpath)
|
49
|
+
HaveXpath.new(xpath)
|
50
|
+
end
|
51
|
+
|
52
|
+
# check if the xpath has the specified value
|
53
|
+
# value is a string and there must be a single result to match its
|
54
|
+
# equality against
|
55
|
+
class MatchXpath
|
56
|
+
def initialize(xpath, val)
|
57
|
+
@xpath = xpath
|
58
|
+
@val= val
|
59
|
+
end
|
60
|
+
|
61
|
+
def matches?(response)
|
62
|
+
@response = response
|
63
|
+
doc = response.is_a?(REXML::Document) ? response : REXML::Document.new(@response)
|
64
|
+
ok = false
|
65
|
+
REXML::XPath.each(doc, @xpath) do |e|
|
66
|
+
@actual_val = case e
|
67
|
+
when REXML::Attribute
|
68
|
+
e.to_s
|
69
|
+
when REXML::Element
|
70
|
+
e.text
|
71
|
+
else
|
72
|
+
e.to_s
|
73
|
+
end
|
74
|
+
ok = true
|
75
|
+
return false unless @val == @actual_val
|
76
|
+
end
|
77
|
+
return true if !ok && @val.nil?
|
78
|
+
return ok
|
79
|
+
end
|
80
|
+
|
81
|
+
def failure_message
|
82
|
+
"The xpath #{@xpath} did not have the value #{@val.inspect} it was #{@actual_val.inspect}"
|
83
|
+
end
|
84
|
+
|
85
|
+
def description
|
86
|
+
"match the xpath expression #{@xpath} with #{@val}"
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
def match_xpath(xpath, val)
|
91
|
+
MatchXpath.new(xpath, val)
|
92
|
+
end
|
93
|
+
|
94
|
+
# checks if the given xpath occurs num times
|
95
|
+
class HaveNodes #:nodoc:
|
96
|
+
def initialize(xpath, num)
|
97
|
+
@xpath= xpath
|
98
|
+
@num = num
|
99
|
+
end
|
100
|
+
|
101
|
+
def matches?(response)
|
102
|
+
@response = response
|
103
|
+
doc = response.is_a?(REXML::Document) ? response : REXML::Document.new(@response)
|
104
|
+
match = REXML::XPath.match(doc, @xpath)
|
105
|
+
@num_found= match.size
|
106
|
+
@num_found == @num
|
107
|
+
end
|
108
|
+
|
109
|
+
def failure_message
|
110
|
+
"Did not find expected number of nodes #{@num} in xpath #{@xpath} Found #{@num_found}"
|
111
|
+
end
|
112
|
+
|
113
|
+
def description
|
114
|
+
"match the number of nodes #{@num}"
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
def have_nodes(xpath, num)
|
119
|
+
HaveNodes.new(xpath, num)
|
120
|
+
end
|
121
|
+
|
122
|
+
end
|
123
|
+
end
|
metadata
ADDED
@@ -0,0 +1,295 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: realityforge-buildr
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.5.9
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Apache Buildr
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-03-08 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.9.2.2
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.9.2.2
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: builder
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 3.2.4
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 3.2.4
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rubyzip
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 2.3.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 2.3.0
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: json_pure
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 2.5.1
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 2.5.1
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: xml-simple
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: 1.1.8
|
76
|
+
type: :runtime
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: 1.1.8
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: bundler
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: rspec-expectations
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - '='
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 2.14.3
|
104
|
+
type: :development
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - '='
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 2.14.3
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rspec-mocks
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - '='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 2.14.3
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - '='
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: 2.14.3
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rspec-core
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - '='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 2.14.5
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 2.14.5
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: rspec
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - '='
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: 2.14.1
|
146
|
+
type: :development
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - '='
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: 2.14.1
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: rspec-retry
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - '='
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: 0.2.1
|
160
|
+
type: :development
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - '='
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: 0.2.1
|
167
|
+
description: |
|
168
|
+
Apache Buildr is a build system for Java-based applications. We wanted
|
169
|
+
something that's simple and intuitive to use, so we only need to tell it what
|
170
|
+
to do, and it takes care of the rest. But also something we can easily extend
|
171
|
+
for those one-off tasks, with a language that's a joy to use.
|
172
|
+
email: users@buildr.apache.org
|
173
|
+
executables:
|
174
|
+
- buildr
|
175
|
+
extensions: []
|
176
|
+
extra_rdoc_files:
|
177
|
+
- README.md
|
178
|
+
- CHANGELOG.md
|
179
|
+
- LICENSE
|
180
|
+
- NOTICE
|
181
|
+
files:
|
182
|
+
- CHANGELOG.md
|
183
|
+
- LICENSE
|
184
|
+
- NOTICE
|
185
|
+
- README.md
|
186
|
+
- Rakefile
|
187
|
+
- addon/buildr/checkstyle-report.xsl
|
188
|
+
- addon/buildr/checkstyle.rb
|
189
|
+
- addon/buildr/git_auto_version.rb
|
190
|
+
- addon/buildr/gpg.rb
|
191
|
+
- addon/buildr/gwt.rb
|
192
|
+
- addon/buildr/jacoco.rb
|
193
|
+
- addon/buildr/pmd.rb
|
194
|
+
- addon/buildr/single_intermediate_layout.rb
|
195
|
+
- addon/buildr/spotbugs.rb
|
196
|
+
- addon/buildr/top_level_generate_dir.rb
|
197
|
+
- addon/buildr/wsgen.rb
|
198
|
+
- bin/buildr
|
199
|
+
- buildr.gemspec
|
200
|
+
- lib/buildr.rb
|
201
|
+
- lib/buildr/core/application.rb
|
202
|
+
- lib/buildr/core/assets.rb
|
203
|
+
- lib/buildr/core/build.rb
|
204
|
+
- lib/buildr/core/common.rb
|
205
|
+
- lib/buildr/core/compile.rb
|
206
|
+
- lib/buildr/core/console.rb
|
207
|
+
- lib/buildr/core/doc.rb
|
208
|
+
- lib/buildr/core/environment.rb
|
209
|
+
- lib/buildr/core/filter.rb
|
210
|
+
- lib/buildr/core/help.rb
|
211
|
+
- lib/buildr/core/progressbar.rb
|
212
|
+
- lib/buildr/core/project.rb
|
213
|
+
- lib/buildr/core/test.rb
|
214
|
+
- lib/buildr/core/transports.rb
|
215
|
+
- lib/buildr/core/util.rb
|
216
|
+
- lib/buildr/ide/idea.rb
|
217
|
+
- lib/buildr/java/commands.rb
|
218
|
+
- lib/buildr/java/compiler.rb
|
219
|
+
- lib/buildr/java/custom_pom.rb
|
220
|
+
- lib/buildr/java/doc.rb
|
221
|
+
- lib/buildr/java/packaging.rb
|
222
|
+
- lib/buildr/java/pom.rb
|
223
|
+
- lib/buildr/java/test_result.rb
|
224
|
+
- lib/buildr/java/tests.rb
|
225
|
+
- lib/buildr/packaging/archive.rb
|
226
|
+
- lib/buildr/packaging/artifact.rb
|
227
|
+
- lib/buildr/packaging/artifact_namespace.rb
|
228
|
+
- lib/buildr/packaging/artifact_search.rb
|
229
|
+
- lib/buildr/packaging/package.rb
|
230
|
+
- lib/buildr/packaging/version_requirement.rb
|
231
|
+
- lib/buildr/packaging/zip.rb
|
232
|
+
- lib/buildr/packaging/ziptask.rb
|
233
|
+
- lib/buildr/version.rb
|
234
|
+
- rakelib/release.rake
|
235
|
+
- spec/addon/checkstyle_spec.rb
|
236
|
+
- spec/core/application_spec.rb
|
237
|
+
- spec/core/build_spec.rb
|
238
|
+
- spec/core/common_spec.rb
|
239
|
+
- spec/core/compile_spec.rb
|
240
|
+
- spec/core/console_spec.rb
|
241
|
+
- spec/core/doc_spec.rb
|
242
|
+
- spec/core/extension_spec.rb
|
243
|
+
- spec/core/project_spec.rb
|
244
|
+
- spec/core/test_spec.rb
|
245
|
+
- spec/core/transport_spec.rb
|
246
|
+
- spec/core/util_spec.rb
|
247
|
+
- spec/ide/idea_spec.rb
|
248
|
+
- spec/java/commands_spec.rb
|
249
|
+
- spec/java/compiler_spec.rb
|
250
|
+
- spec/java/custom_pom_spec.rb
|
251
|
+
- spec/java/doc_spec.rb
|
252
|
+
- spec/java/packaging_spec.rb
|
253
|
+
- spec/java/pom_spec.rb
|
254
|
+
- spec/java/test_coverage_helper.rb
|
255
|
+
- spec/java/tests_spec.rb
|
256
|
+
- spec/packaging/archive_spec.rb
|
257
|
+
- spec/packaging/artifact_namespace_spec.rb
|
258
|
+
- spec/packaging/artifact_spec.rb
|
259
|
+
- spec/packaging/packaging_helper.rb
|
260
|
+
- spec/packaging/packaging_spec.rb
|
261
|
+
- spec/sandbox.rb
|
262
|
+
- spec/spec_helpers.rb
|
263
|
+
- spec/version_requirement_spec.rb
|
264
|
+
- spec/xpath_matchers.rb
|
265
|
+
homepage: http://buildr.apache.org/
|
266
|
+
licenses:
|
267
|
+
- Apache-2.0
|
268
|
+
metadata: {}
|
269
|
+
post_install_message: To get started run buildr --help
|
270
|
+
rdoc_options:
|
271
|
+
- "--title"
|
272
|
+
- Buildr
|
273
|
+
- "--main"
|
274
|
+
- README.md
|
275
|
+
- "--webcvs"
|
276
|
+
- https://github.com/realityforge/buildr
|
277
|
+
require_paths:
|
278
|
+
- lib
|
279
|
+
- addon
|
280
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
281
|
+
requirements:
|
282
|
+
- - ">="
|
283
|
+
- !ruby/object:Gem::Version
|
284
|
+
version: '0'
|
285
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
286
|
+
requirements:
|
287
|
+
- - ">="
|
288
|
+
- !ruby/object:Gem::Version
|
289
|
+
version: '0'
|
290
|
+
requirements: []
|
291
|
+
rubygems_version: 3.1.4
|
292
|
+
signing_key:
|
293
|
+
specification_version: 4
|
294
|
+
summary: Build like you code
|
295
|
+
test_files: []
|