buildr 1.4.15 → 1.4.16
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/CHANGELOG +33 -0
- data/README.rdoc +4 -7
- data/_buildr +0 -0
- data/_jbuildr +0 -0
- data/addon/buildr/checkstyle.rb +3 -1
- data/addon/buildr/git_auto_version.rb +3 -2
- data/addon/buildr/gpg.rb +1 -1
- data/addon/buildr/gwt.rb +54 -11
- data/addon/buildr/jacoco.rb +34 -0
- data/addon/buildr/pmd.rb +2 -2
- data/addon/buildr/wsgen.rb +11 -3
- data/buildr.buildfile +1 -1
- data/buildr.gemspec +1 -1
- data/doc/contributing.textile +4 -18
- data/doc/download.textile +19 -7
- data/doc/index.textile +15 -50
- data/doc/scripts/install-jruby.sh +0 -0
- data/doc/scripts/install-linux.sh +0 -0
- data/doc/scripts/install-osx.sh +0 -0
- data/lib/buildr/ide/idea.rb +19 -2
- data/lib/buildr/version.rb +1 -1
- data/rakelib/release.rake +9 -12
- data/rakelib/stage.rake +3 -5
- data/spec/core/extension_spec.rb +0 -0
- metadata +3 -6
- data/doc/scripts/buildr-git.rb +0 -512
- data/doc/scripts/gitflow.rb +0 -296
- data/lib/buildr/scala/org/apache/buildr/Specs2Runner.class +0 -0
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
N2YxODc1NzFlZjQ0NDZlOGRhMWJhYWM3ZmYyOWZlZmU1M2MwZjRlMw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NGNhNzZiYzlkOWJiZmExYzJiODY4ZTk3ZTU0ZDI2MzcwODZiYTg4Zg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NWY2NjRlZGY5Mzg3ZDM1NTI2YTg1Y2Y5NTJjYzgxYTkzMDdkMGI4Y2YwNThk
|
10
|
+
OTI2NTg0NWMwZDk4NjhiNDljYTA1N2VkN2M3MGVlNjJmN2YzMzA5OTU4ZjE1
|
11
|
+
N2M2MWUyNjM2M2RlNTZiYTQ4N2Y1ZjM3YTU5NGI3ZWFkMDdkNWY=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MDUzZjIwNGUyOTEwNDBhOTc5ZGZmMmQ0NjJkYWYzYzlhYWFkYzk2N2QyNDQx
|
14
|
+
NjRmYzc4ZWJkODFkOGJiYzI5YzIzZGQ4YzQ3ZDliYjc4YjQ5OTcyNGY4OTFh
|
15
|
+
OTM2MjE1ZjI0NDdkODRhMDNhYzZmYzA1NjVmZjAzN2QwY2ZjNjM=
|
data/CHANGELOG
CHANGED
@@ -1,3 +1,36 @@
|
|
1
|
+
1.4.16 (2014-05-03)
|
2
|
+
* Added: Add the ability to generate a html report when using the
|
3
|
+
jacoco addon. Extracted from the ode project.
|
4
|
+
* Fixed: Remove the projectname.ids file when rebuilding the idea
|
5
|
+
project file avoiding conflict with idea.
|
6
|
+
* Fixed: Avoid passing duplicate -keep parameters to wsimport from
|
7
|
+
wsgen addon.
|
8
|
+
* Change: Improved the error handling when generating java from wsdl
|
9
|
+
in the wsgen addon.
|
10
|
+
* Change: Upgraded the Checkstyle plugin to use checkstyle 5.7 that
|
11
|
+
improves Java 7 compatibility.
|
12
|
+
* Added: Add support for configuration of the schema-pattern,
|
13
|
+
table-pattern and default-schemas settings in idea's
|
14
|
+
data source definitions.
|
15
|
+
* Change: Upgraded the PMD plugin to use pmd 5.0.5 which for Java 7
|
16
|
+
compatibility.
|
17
|
+
* Change: Derive the version of GWT in gwt addon from supplied
|
18
|
+
dependencies.
|
19
|
+
* Fixed: Include the compiled classes on path for GWT addon to
|
20
|
+
ensure the GWT compiler can load annotations.
|
21
|
+
* Change: Derive the GWT version from build settings if not
|
22
|
+
explicitly specified by GWT addon.
|
23
|
+
* Change: Support prefixing the version generated by the
|
24
|
+
gwt_auto_version addon with the environment
|
25
|
+
variable "VERSION_PREFIX".
|
26
|
+
* Fixed: Support overriding the GWT version used by the GWT addon.
|
27
|
+
* Fixed: Fix problem when the :dependencies option was not
|
28
|
+
passed to the GWT addon.
|
29
|
+
* Fixed: Avoid crash in GPG addon if unable to create a pom
|
30
|
+
for an artifact.
|
31
|
+
* Fixed: Correct location of Git mirror in the README. Submitted
|
32
|
+
by Marcos Sainz.
|
33
|
+
|
1
34
|
1.4.15 (2013-11-06)
|
2
35
|
* Change: Update to TestNG 6.8.7.
|
3
36
|
* Change: Updated the 'test_jar' package type to have a
|
data/README.rdoc
CHANGED
@@ -94,16 +94,13 @@ When prompted for a platform, select ruby.
|
|
94
94
|
|
95
95
|
== Living On the Edge
|
96
96
|
|
97
|
-
You can check the latest sources from
|
97
|
+
You can check the latest sources from GIT:
|
98
98
|
|
99
|
-
|
99
|
+
git clone http://git.apache.org/buildr.git
|
100
100
|
|
101
|
-
|
102
|
-
http://svn.apache.org/repos/asf/buildr
|
101
|
+
If you prefer GitHub, a mirror is available from http://github.com/apache/buildr:
|
103
102
|
|
104
|
-
|
105
|
-
|
106
|
-
git clone git://github.com/buildr/buildr.git
|
103
|
+
git clone git://github.com/apache/buildr.git
|
107
104
|
|
108
105
|
To install Buildr locally from source:
|
109
106
|
|
data/_buildr
CHANGED
File without changes
|
data/_jbuildr
CHANGED
File without changes
|
data/addon/buildr/checkstyle.rb
CHANGED
@@ -23,9 +23,11 @@ module Buildr
|
|
23
23
|
# The specs for requirements
|
24
24
|
def dependencies
|
25
25
|
[
|
26
|
-
'com.puppycrawl.tools:checkstyle:jar:5.
|
26
|
+
'com.puppycrawl.tools:checkstyle:jar:5.7',
|
27
27
|
'commons-cli:commons-cli:jar:1.2',
|
28
28
|
'antlr:antlr:jar:2.7.7',
|
29
|
+
'com.google.guava:guava-jdk5:jar:16.0',
|
30
|
+
'com.google.guava:guava-bootstrap-jdk5:jar:16.0',
|
29
31
|
'com.google.collections:google-collections:jar:1.0',
|
30
32
|
'commons-beanutils:commons-beanutils-core:jar:1.8.3',
|
31
33
|
'commons-logging:commons-logging:jar:1.1.1'
|
@@ -21,7 +21,8 @@ module Buildr
|
|
21
21
|
before_define do |project|
|
22
22
|
unless project.version
|
23
23
|
version_suffix = ENV['BUILD_NUMBER'] ? "-#{ENV['BUILD_NUMBER']}" : ''
|
24
|
-
|
24
|
+
version_prefix = ENV['VERSION_PREFIX'] ? "#{ENV['VERSION_PREFIX']}-" : ''
|
25
|
+
project.version = version_prefix + `git describe --tags --always`.strip + version_suffix
|
25
26
|
end
|
26
27
|
end
|
27
28
|
end
|
@@ -30,4 +31,4 @@ end
|
|
30
31
|
|
31
32
|
class Buildr::Project
|
32
33
|
include Buildr::GitAutoVersion::ProjectExtension
|
33
|
-
end
|
34
|
+
end
|
data/addon/buildr/gpg.rb
CHANGED
@@ -65,7 +65,7 @@ module Buildr
|
|
65
65
|
|
66
66
|
def sign_and_upload_all_packages(project)
|
67
67
|
project.packages.each { |pkg| Buildr::GPG.sign_and_upload(project, pkg) }
|
68
|
-
project.packages.map { |pkg| pkg.pom }.uniq.each { |pom| Buildr::GPG.sign_and_upload(project, pom) }
|
68
|
+
project.packages.map { |pkg| pkg.pom }.compact.uniq.each { |pom| Buildr::GPG.sign_and_upload(project, pom) }
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
data/addon/buildr/gwt.rb
CHANGED
@@ -17,13 +17,22 @@ module Buildr
|
|
17
17
|
module GWT
|
18
18
|
|
19
19
|
class << self
|
20
|
+
|
21
|
+
def version=(version)
|
22
|
+
@version = version
|
23
|
+
end
|
24
|
+
|
25
|
+
def version
|
26
|
+
@version || Buildr.settings.build['gwt'] || '2.5.1'
|
27
|
+
end
|
28
|
+
|
20
29
|
# The specs for requirements
|
21
|
-
def dependencies
|
22
|
-
|
30
|
+
def dependencies(version = nil)
|
31
|
+
["com.google.gwt:gwt-dev:jar:#{version || self.version}"]
|
23
32
|
end
|
24
33
|
|
25
34
|
def gwtc_main(modules, source_artifacts, output_dir, unit_cache_dir, options = {})
|
26
|
-
cp = Buildr.artifacts(self.dependencies).each(&:invoke).map(&:to_s) + Buildr.artifacts(source_artifacts).each(&:invoke).map(&:to_s)
|
35
|
+
cp = Buildr.artifacts(self.dependencies(options[:version])).each(&:invoke).map(&:to_s) + Buildr.artifacts(source_artifacts).each(&:invoke).map(&:to_s)
|
27
36
|
style = options[:style] || "OBFUSCATED," # "PRETTY", "DETAILED"
|
28
37
|
log_level = options[:log_level] # ERROR, WARN, INFO, TRACE, DEBUG, SPAM, or ALL
|
29
38
|
workers = options[:workers] || 2
|
@@ -63,13 +72,13 @@ module Buildr
|
|
63
72
|
Java::Commands.java 'com.google.gwt.dev.Compiler', *(args + [{:classpath => cp, :properties => properties, :java_args => options[:java_args], :pathing_jar => false}])
|
64
73
|
end
|
65
74
|
|
66
|
-
def superdev_dependencies
|
67
|
-
self.dependencies +
|
75
|
+
def superdev_dependencies(version = nil)
|
76
|
+
self.dependencies + ["com.google.gwt:gwt-codeserver:jar:#{version || self.version}"]
|
68
77
|
end
|
69
78
|
|
70
79
|
def gwt_superdev(module_name, source_artifacts, work_dir, options = {})
|
71
80
|
|
72
|
-
cp = Buildr.artifacts(self.superdev_dependencies).each(&:invoke).map(&:to_s) + Buildr.artifacts(source_artifacts).each(&:invoke).map(&:to_s)
|
81
|
+
cp = Buildr.artifacts(self.superdev_dependencies(options[:version])).each(&:invoke).map(&:to_s) + Buildr.artifacts(source_artifacts).each(&:invoke).map(&:to_s)
|
73
82
|
|
74
83
|
args = []
|
75
84
|
args << "-port" << (options[:port] || 5050)
|
@@ -93,15 +102,21 @@ module Buildr
|
|
93
102
|
def gwt(module_names, options = {})
|
94
103
|
output_key = options[:output_key] || project.id
|
95
104
|
output_dir = project._(:target, :generated, :gwt, output_key)
|
96
|
-
artifacts = (project.compile.sources + project.resources.sources).collect do |a|
|
105
|
+
artifacts = ([project.compile.target] + project.compile.sources + project.resources.sources).collect do |a|
|
97
106
|
a.is_a?(String) ? file(a) : a
|
98
107
|
end
|
99
|
-
dependencies = options[:dependencies] ? artifacts(options[:dependencies]) : project.compile.dependencies
|
108
|
+
dependencies = options[:dependencies] ? artifacts(options[:dependencies]) : (project.compile.dependencies + [project.compile.target]).collect do |dep|
|
109
|
+
dep.is_a?(String) ? file(dep) : dep
|
110
|
+
end
|
100
111
|
|
101
112
|
unit_cache_dir = project._(:target, :gwt, :unit_cache_dir, output_key)
|
102
113
|
|
103
114
|
task = project.file(output_dir) do
|
104
|
-
Buildr::GWT.gwtc_main(module_names,
|
115
|
+
Buildr::GWT.gwtc_main(module_names,
|
116
|
+
dependencies + artifacts,
|
117
|
+
output_dir,
|
118
|
+
unit_cache_dir,
|
119
|
+
{:version => gwt_detect_version(dependencies)}.merge(options))
|
105
120
|
end
|
106
121
|
task.enhance(dependencies)
|
107
122
|
task.enhance([project.compile])
|
@@ -110,14 +125,42 @@ module Buildr
|
|
110
125
|
end
|
111
126
|
|
112
127
|
def gwt_superdev_runner(module_name, options = {})
|
113
|
-
|
128
|
+
|
129
|
+
dependencies = []
|
130
|
+
if options[:dependencies]
|
131
|
+
dependencies = artifacts(options[:dependencies])
|
132
|
+
else
|
133
|
+
sources = [] + project.compile.sources + project.resources.sources
|
134
|
+
classes = [] + project.compile.dependencies + [project.compile.target]
|
135
|
+
dependencies = (classes + sources).collect do |dep|
|
136
|
+
dep.is_a?(String) ? file(dep) : dep
|
137
|
+
end
|
138
|
+
end
|
114
139
|
|
115
140
|
desc "Run Superdev mode"
|
116
141
|
project.task("superdev") do
|
117
142
|
work_dir = project._(:target, :gwt, :superdev)
|
118
143
|
mkdir_p work_dir
|
119
|
-
Buildr::GWT.gwt_superdev(module_name,
|
144
|
+
Buildr::GWT.gwt_superdev(module_name,
|
145
|
+
dependencies,
|
146
|
+
work_dir,
|
147
|
+
{:version => gwt_detect_version(dependencies)}.merge(options))
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
protected
|
152
|
+
|
153
|
+
def gwt_detect_version(dependencies)
|
154
|
+
version = nil
|
155
|
+
dependencies.each do |dep|
|
156
|
+
if dep.respond_to?(:to_spec_hash)
|
157
|
+
hash = dep.to_spec_hash
|
158
|
+
if 'com.google.gwt' == hash[:group] && 'gwt-user' == hash[:id] && :jar == hash[:type]
|
159
|
+
version = hash[:version]
|
160
|
+
end
|
161
|
+
end
|
120
162
|
end
|
163
|
+
version
|
121
164
|
end
|
122
165
|
end
|
123
166
|
end
|
data/addon/buildr/jacoco.rb
CHANGED
@@ -185,6 +185,40 @@ module Buildr
|
|
185
185
|
end
|
186
186
|
end
|
187
187
|
end
|
188
|
+
namespace 'jacoco' do
|
189
|
+
desc "Generate JaCoCo reports."
|
190
|
+
task 'report' do
|
191
|
+
Buildr.ant "jacoco" do |ant|
|
192
|
+
ant.taskdef(:resource => "org/jacoco/ant/antlib.xml") do |ant|
|
193
|
+
ant.classpath :path => Buildr.artifacts(Buildr::JaCoCo.ant_spec).each(&:invoke).map(&:to_s).join(File::PATH_SEPARATOR)
|
194
|
+
end
|
195
|
+
ant.report do |ant|
|
196
|
+
ant.executiondata do |ant|
|
197
|
+
Buildr.projects.each do |project|
|
198
|
+
ant.fileset :file=>project.jacoco.destfile if File.exist?(project.jacoco.destfile)
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
ant.structure(:name => "Jacoco Report") do |ant|
|
203
|
+
ant.classfiles do |ant|
|
204
|
+
Buildr.projects.map(&:compile).map(&:target).flatten.map(&:to_s).each do |src|
|
205
|
+
ant.fileset :dir=>src.to_s if File.exist?(src)
|
206
|
+
end
|
207
|
+
end
|
208
|
+
ant.sourcefiles(:encoding => "UTF-8") do |ant|
|
209
|
+
Buildr.projects.map(&:compile).map(&:sources).flatten.map(&:to_s).each do |src|
|
210
|
+
ant.fileset :dir=>src.to_s if File.exist?(src)
|
211
|
+
end
|
212
|
+
end
|
213
|
+
end
|
214
|
+
|
215
|
+
ant.html :destdir => "reports/jacoco"
|
216
|
+
ant.xml :destfile => "reports/jacoco/jacoco.xml"
|
217
|
+
ant.csv :destfile => "reports/jacoco/jacoco.csv"
|
218
|
+
end
|
219
|
+
end
|
220
|
+
end
|
221
|
+
end
|
188
222
|
end
|
189
223
|
end
|
190
224
|
end
|
data/addon/buildr/pmd.rb
CHANGED
@@ -25,7 +25,7 @@ module Buildr
|
|
25
25
|
# The specs for requirements
|
26
26
|
def dependencies
|
27
27
|
[
|
28
|
-
'pmd:pmd:jar:
|
28
|
+
'net.sourceforge.pmd:pmd:jar:5.0.5',
|
29
29
|
'jaxen:jaxen:jar:1.1.1',
|
30
30
|
'asm:asm:jar:3.2'
|
31
31
|
]
|
@@ -83,7 +83,7 @@ module Buildr
|
|
83
83
|
attr_writer :rule_set_files
|
84
84
|
|
85
85
|
def rule_set_files
|
86
|
-
@rule_set_files
|
86
|
+
@rule_set_files ||= ['rulesets/java/basic.xml','rulesets/java/imports.xml','rulesets/java/unusedcode.xml']
|
87
87
|
end
|
88
88
|
|
89
89
|
attr_writer :rule_set_paths
|
data/addon/buildr/wsgen.rb
CHANGED
@@ -80,7 +80,6 @@ module Buildr
|
|
80
80
|
args << intermediate_dir
|
81
81
|
args << "-r"
|
82
82
|
args << "#{base_wsdl_dir}/META-INF/wsdl"
|
83
|
-
args << "-keep"
|
84
83
|
args << "-s"
|
85
84
|
args << java_dir
|
86
85
|
args << "-cp"
|
@@ -160,11 +159,20 @@ module Buildr
|
|
160
159
|
end
|
161
160
|
command << wsdl_file
|
162
161
|
|
163
|
-
|
164
|
-
|
162
|
+
trace command.join(' ')
|
163
|
+
output = `#{command.join(' ')}`
|
164
|
+
if $? != 0
|
165
165
|
rm_rf java_file
|
166
|
+
puts output
|
166
167
|
raise "Problem building webservices"
|
167
168
|
end
|
169
|
+
unless File.exist?(java_file)
|
170
|
+
puts output
|
171
|
+
raise "Problem building webservices"
|
172
|
+
end
|
173
|
+
if output =~ /\[WARNING\]/
|
174
|
+
puts output
|
175
|
+
end
|
168
176
|
end
|
169
177
|
project.file(ws_dir).enhance([java_file])
|
170
178
|
end
|
data/buildr.buildfile
CHANGED
@@ -44,7 +44,7 @@ define 'buildr' do
|
|
44
44
|
spec.homepage = "http://buildr.apache.org"
|
45
45
|
spec.rubyforge_project = 'buildr'
|
46
46
|
spec.extra_rdoc_files = legal
|
47
|
-
spec.rdoc_options << '--webcvs' << '
|
47
|
+
spec.rdoc_options << '--webcvs' << 'https://github.com/apache/buildr'
|
48
48
|
spec.add_dependency 'buildr', '~> 1.3'
|
49
49
|
end
|
50
50
|
|
data/buildr.gemspec
CHANGED
@@ -48,7 +48,7 @@ for those one-off tasks, with a language that's a joy to use.
|
|
48
48
|
|
49
49
|
spec.extra_rdoc_files = 'README.rdoc', 'CHANGELOG', 'LICENSE', 'NOTICE'
|
50
50
|
spec.rdoc_options = '--title', 'Buildr', '--main', 'README.rdoc',
|
51
|
-
'--webcvs', '
|
51
|
+
'--webcvs', 'https://github.com/apache/buildr'
|
52
52
|
spec.post_install_message = "To get started run buildr --help"
|
53
53
|
|
54
54
|
spec.required_rubygems_version = ">= 1.8.6"
|
data/doc/contributing.textile
CHANGED
@@ -76,19 +76,9 @@ h2(#edge). Living on the edge
|
|
76
76
|
|
77
77
|
Did we mention Buildr is an open source project? In fact, when you install Buildr you get all the source code, documentation, test case and everything you need to use it, extend it and patch it. Have a look in your Gem directory.
|
78
78
|
|
79
|
-
h3(#
|
79
|
+
h3(#git). GIT
|
80
80
|
|
81
|
-
But if you want to work with the latest and greatest, you'll want to check out
|
82
|
-
|
83
|
-
{% highlight sh %}
|
84
|
-
$ svn co http://svn.apache.org/repos/asf/buildr/trunk buildr
|
85
|
-
{% endhighlight %}
|
86
|
-
|
87
|
-
You can also browse the "Buildr repository":http://svn.apache.org/repos/asf/buildr.
|
88
|
-
|
89
|
-
h3(#git). Git
|
90
|
-
|
91
|
-
Not a fan of SVN? We understand. You can also use the "official Apache Git clone.":http://git.apache.org This clone is maintained by the ASF and kept in sync with the SVN repository (though, in practice there may be some delay in cloning recent commits). Apache's Git hosting supports both git:// and http:// protocols (you should use git:// if at all possible as it is faster than http://):
|
81
|
+
But if you want to work with the latest and greatest, you'll want to check out Buildr from source control. You can use the "official Apache Git clone.":http://git.apache.org This clone is maintained by the ASF and kept in sync with the SVN repository (though, in practice there may be some delay in cloning recent commits). Apache's Git hosting supports both git:// and http:// protocols (you should use git:// if at all possible as it is faster than http://):
|
92
82
|
|
93
83
|
{% highlight sh %}
|
94
84
|
$ git clone git://git.apache.org/buildr.git
|
@@ -102,11 +92,7 @@ And keep this "Git cheat sheet":http://ktown.kde.org/~zrusin/git/git-cheat-sheet
|
|
102
92
|
|
103
93
|
h4. GitHub
|
104
94
|
|
105
|
-
You are also welcome to fork or clone the "Buildr repository on GitHub":http://github.com/apache/buildr. This repository is just an exact mirror of the official Apache Git clone referenced above (updated every 30 minutes).
|
106
|
-
|
107
|
-
* "Assaf Arkin":http://github.com/assaf/buildr
|
108
|
-
* "Victor Hugo Borja":http://github.com/vic/buildr
|
109
|
-
* "Daniel Spiewak":http://github.com/djspiewak/buildr
|
95
|
+
You are also welcome to fork or clone the "Buildr repository on GitHub":http://github.com/apache/buildr. This repository is just an exact mirror of the official Apache Git clone referenced above (updated every 30 minutes).
|
110
96
|
|
111
97
|
h3. Working with Source Code
|
112
98
|
|
@@ -193,7 +179,7 @@ Yes, we do make typos, spelling errors and sometimes we write things that don't
|
|
193
179
|
|
194
180
|
For simple typos and quick fixes, just send a message to the mailing list or log an issue in JIRA.
|
195
181
|
|
196
|
-
If you end up rewriting a significant piece of text, or add new documentation (you rock!), send a patch. Making documentation patches is fairly easy. All the documentation is generated from text files in the @doc/pages@ directory, so all you need to do is check it out from Git
|
182
|
+
If you end up rewriting a significant piece of text, or add new documentation (you rock!), send a patch. Making documentation patches is fairly easy. All the documentation is generated from text files in the @doc/pages@ directory, so all you need to do is check it out from Git, edit, and @git diff@ to create a patch.
|
197
183
|
|
198
184
|
We use "Textile":http://www.textism.com/tools/textile/ as the markup language, it takes all of a few minutes to learn, it's intuitive to use, and produces clean HTML. You can learn it all in a few minutes from the "Textile Reference Manual":http://redcloth.org/textile. Also check out the "Textile Quick Reference":http://hobix.com/textile/quick.html.
|
199
185
|
|
data/doc/download.textile
CHANGED
@@ -15,21 +15,33 @@ The official Apache distribution consists of the digitally signed binaries (gems
|
|
15
15
|
|
16
16
|
In addition, contributors to this project maintain a separate distribution over on "RubyForge":http://rubyforge.org/projects/buildr. Using this distribution, you're able to install Buildr directly from the remote gem repository and to automatically upgrade when a new release comes out. The RubyForge distribution is *not* an official Apache distribution.
|
17
17
|
|
18
|
-
The source code is included in both source and binary distribution, the Gem distribution expands the source code into your local Gem repository. That's in addition to getting the source code directly
|
18
|
+
The source code is included in both source and binary distribution, the Gem distribution expands the source code into your local Gem repository. That's in addition to getting the source code directly. Learn more about working with source code and "living on the edge":contributing.html#edge.
|
19
19
|
|
20
20
|
|
21
21
|
h2(#dist). Binaries and Source Code
|
22
22
|
|
23
|
+
h3. buildr 1.4.15 (2013-11-06)
|
24
|
+
|
25
|
+
|_. Package |_. MD5 Checksum |_. PGP |
|
26
|
+
| "buildr-1.4.15-java.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.15/buildr-1.4.15-java.gem | "5ea7f855a2e57340d840fea3ef635a44":http://www.apache.org/dist/buildr/1.4.15/buildr-1.4.15-java.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.15/buildr-1.4.15-java.gem.asc |
|
27
|
+
| "buildr-1.4.15-x86-mswin32.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.15/buildr-1.4.15-x86-mswin32.gem | "e297b9a358ed2fe90afe0a67285c1236":http://www.apache.org/dist/buildr/1.4.15/buildr-1.4.15-x86-mswin32.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.15/buildr-1.4.15-x86-mswin32.gem.asc |
|
28
|
+
| "buildr-1.4.15.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.15/buildr-1.4.15.gem | "d4052ac4aa739c63ab7ad08d80719a1a":http://www.apache.org/dist/buildr/1.4.15/buildr-1.4.15.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.15/buildr-1.4.15.gem.asc |
|
29
|
+
| "buildr-1.4.15.tgz":http://www.apache.org/dyn/closer.cgi/buildr/1.4.15/buildr-1.4.15.tgz | "c80a6fee2d2cfe7de1a57821596444bd":http://www.apache.org/dist/buildr/1.4.15/buildr-1.4.15.tgz.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.15/buildr-1.4.15.tgz.asc |
|
30
|
+
| "buildr-1.4.15.zip":http://www.apache.org/dyn/closer.cgi/buildr/1.4.15/buildr-1.4.15.zip | "0c63028d9965817b8d17ca49096974dc":http://www.apache.org/dist/buildr/1.4.15/buildr-1.4.15.zip.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.15/buildr-1.4.15.zip.asc |
|
31
|
+
|
32
|
+
p>. ("Release signing keys":http://www.apache.org/dist/buildr/1.4.15/KEYS)
|
33
|
+
|
34
|
+
|
23
35
|
h3. buildr 1.4.14 (2013-10-11)
|
24
36
|
|
25
37
|
|_. Package |_. MD5 Checksum |_. PGP |
|
26
|
-
| "buildr-1.4.14-java.gem":http://
|
27
|
-
| "buildr-1.4.14-x86-mswin32.gem":http://
|
28
|
-
| "buildr-1.4.14.gem":http://
|
29
|
-
| "buildr-1.4.14.tgz":http://
|
30
|
-
| "buildr-1.4.14.zip":http://
|
38
|
+
| "buildr-1.4.14-java.gem":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14-java.gem | "f90047a502b964943bda09b0a76b98f2":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14-java.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14-java.gem.asc |
|
39
|
+
| "buildr-1.4.14-x86-mswin32.gem":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14-x86-mswin32.gem | "f98125eb8edae9ecb720d04d895b113b":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14-x86-mswin32.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14-x86-mswin32.gem.asc |
|
40
|
+
| "buildr-1.4.14.gem":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14.gem | "b797e2a07b7da07a317ea90ec1d7a36c":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14.gem.asc |
|
41
|
+
| "buildr-1.4.14.tgz":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14.tgz | "ddece5f90aef3ccd589eeff81af2a686":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14.tgz.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14.tgz.asc |
|
42
|
+
| "buildr-1.4.14.zip":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14.zip | "40c0bffb0b2d3ca1ad43a5e0020e2afb":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14.zip.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.14/buildr-1.4.14.zip.asc |
|
31
43
|
|
32
|
-
p>. ("Release signing keys":http://
|
44
|
+
p>. ("Release signing keys":http://archive.apache.org/dist/buildr/1.4.14/KEYS)
|
33
45
|
|
34
46
|
|
35
47
|
h3. buildr 1.4.13 (2013-10-02)
|
data/doc/index.textile
CHANGED
@@ -46,56 +46,21 @@ So let's get started. You can "read the documentation online":quick_start.html,
|
|
46
46
|
|
47
47
|
h2(#news). What's New
|
48
48
|
|
49
|
-
Highlights from Buildr 1.4.
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
*
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
*
|
60
|
-
|
61
|
-
|
62
|
-
*
|
63
|
-
|
64
|
-
* Fixed: Bug in IdeaProject.partition_dependencies resulted in
|
65
|
-
projects being rebuilt if artifacts were added to the
|
66
|
-
project with dependencies on the current project.
|
67
|
-
* Fixed: BUILDR-605 - Ensure package task invokes included paths.
|
68
|
-
* Fixed: BUILDR-609 - compile.from should accept Task argument.
|
69
|
-
|
70
|
-
Highlights from Buildr 1.4.14 (2013-10-11)
|
71
|
-
* Fixed: Fixed regression in gwt addon.
|
72
|
-
* Fixed: Fixed regression using transitive dependencies due to
|
73
|
-
presence of :scope option in Artifacts.to_hash.
|
74
|
-
* Fixed: BUILDR-681 - Stop empty projects creating target/webapp.
|
75
|
-
* Fixed: Fixed several regressions in in the Intellij IDE
|
76
|
-
project file generation.
|
77
|
-
|
78
|
-
Highlights from Buildr 1.4.13 (2013-10-02)
|
79
|
-
|
80
|
-
* Fixed: Upgrade rjb dependency so that you can change JVMs by
|
81
|
-
modifying JAVA_HOME rather than recompiling rjb.
|
82
|
-
* Change: Update to TestNG 6.8.5.
|
83
|
-
* Fixed: Several Ruby 2.0.0 failures have been addressed.
|
84
|
-
* Fixed: Make archive-related operations use a deterministic ordering.
|
85
|
-
* Added: Initial support for simple integration of an asset pipeline.
|
86
|
-
See "Compiling Assets" section in the manual.
|
87
|
-
* Change: Improve the Intellij IDEA plugin substantially.
|
88
|
-
* Change: Improve the gpg addon.
|
89
|
-
* Fixed: BUILDR-676 - Support the :dir option in Java::Command:java.
|
90
|
-
Reported by John Roth.
|
91
|
-
* Fixed: Improve downloading from Maven Central to avoid caching and
|
92
|
-
set the "User-Agent" http header.
|
93
|
-
* Change: Change default scope of dependencies to 'compile'. Submitted
|
94
|
-
by Ingo Schmidt.
|
95
|
-
* Fixed: BUILDR-673 - Fix the option handling of the MultiTest test
|
96
|
-
framework to behave as documented. Submitted by John Roth.
|
97
|
-
* Added: BUILDR-672 - Allow the user to modify the properties field in
|
98
|
-
the checkstyle addon. Submitted by Wim C.
|
49
|
+
Highlights from Buildr 1.4.16 (2014-05-03)
|
50
|
+
|
51
|
+
* Added: Add the ability to generate a html report when using the
|
52
|
+
jacoco addon. Extracted from the ode project.
|
53
|
+
* Change: Improved the error handling when generating java from wsdl
|
54
|
+
in the wsgen addon.
|
55
|
+
* Change: Upgraded the Checkstyle plugin to use checkstyle 5.7 that
|
56
|
+
improves Java 7 compatibility.
|
57
|
+
* Change: Upgraded the PMD plugin to use pmd 5.0.5 which for Java 7
|
58
|
+
compatibility.
|
59
|
+
* Change: Improve the 'buildr/gwt' addon to easily support different
|
60
|
+
gwt versions. Fix several bugs with the addon at the same
|
61
|
+
time.
|
62
|
+
* Fixed: Avoid crash in GPG addon if unable to create a pom
|
63
|
+
for an artifact.
|
99
64
|
|
100
65
|
This is a partial list -- see the "CHANGELOG":CHANGELOG for full details.
|
101
66
|
|