buildr 1.5.0.dev3-x86-mswin32 → 1.5.0-x86-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +6 -1
- data/doc/_layouts/default.html +2 -9
- data/doc/download.textile +18 -6
- data/doc/index.textile +16 -22
- data/lib/buildr/core/test.rb +0 -1
- data/lib/buildr/java/org/apache/buildr/JavaTestFilter.class +0 -0
- data/lib/buildr/java/org/apache/buildr/JavaTestFilter.java +1 -1
- data/lib/buildr/version.rb +1 -1
- data/rakelib/release.rake +2 -2
- data/rakelib/stage.rake +7 -10
- data/spec/java/tests_spec.rb +15 -0
- metadata +2 -3
- data/doc/images/1442160941-frontcover.jpg +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 36a159a39fbf246ed408bfc57321642c1e9dfc0e
|
4
|
+
data.tar.gz: 7b5e62888e2cda7ceb399d9dee62c323be743573
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af7bfc98d22e8230511d6db65b322c407147f75d1413970b8f631e5f945b834b42285f7a92080ab0ed90fc724126df6cb12caa8a5ca71cc2aff56468c6e06a6c
|
7
|
+
data.tar.gz: c7d9fb804dcf2f24aee8cd1d928d09e00c66838401f321d3eab0fbfe461d4ddcc2bc53bb120696427e1724b27287a84849ccd9b56cb39d1d83bf030c7b5ce324
|
data/CHANGELOG
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
1.5.0 (
|
1
|
+
1.5.0 (2016-09-23)
|
2
2
|
* Change: Update RJB to 1.5.4
|
3
3
|
* Change: Update rubyzip to 1.2.0
|
4
4
|
* Change: Update hoe to 3.15.0
|
@@ -26,6 +26,8 @@
|
|
26
26
|
* Change: Remove JMock::REQUIRES, deprecated.
|
27
27
|
* Change: Remove ScalaCheck::REQUIRES, deprecated.
|
28
28
|
* Change: Change Eclipse Scala project natures from ch.epfl.lamp.sdt.core.scalanature to org.scala-ide.sdt.core.scalanature
|
29
|
+
* Change: Fix the custom Google search widget on the website.
|
30
|
+
* Change: BUILDR-722 Remove links and image of the buildr book from the website.
|
29
31
|
* Added: Travis badge to README.rdoc
|
30
32
|
* Added: Added Rubygems badges to README.rdoc
|
31
33
|
* Added: BUILDR-577 Allow remote repo to be added with http basic auth support. Submitted by Michael Guymon.
|
@@ -44,10 +46,13 @@
|
|
44
46
|
* Fixed: BUILDR-454 Definition-level parent-child references-by-name fail in 1.4.0 but not in 1.3.5. Submitted by Rhett Sutphin.
|
45
47
|
* Fixed: BUILDR-620 resources.filter should not run on non-text files
|
46
48
|
* Fixed: BUILDR-489 Java + Scala joint compiler fails if default encoding and source file encoding are not same and special characters have been used in source code
|
49
|
+
* Fixed: BUILDR-486 Buildr-generated poms should include dependencies
|
50
|
+
* Fixed: BUILDR-723 JavaTestFilter is unable to parse paths containing %2F
|
47
51
|
* Change: Update the custom_pom addon to generate poms with exclusions section that excludes
|
48
52
|
all transitive dependencies. This is required as buildr dependencies are not
|
49
53
|
transitive while Maven's dependencies are transitive by default.
|
50
54
|
* Change: Remove the BND aqute maven repository, as it was decomissioned. Use Maven Central instead.
|
55
|
+
|
51
56
|
1.4.25 (2016-04-18)
|
52
57
|
* Change: BUILDR-712 Update jruby-openssl dependency version or support a range of versions
|
53
58
|
* Change: Update gwt addon to add the GWT artifacts to project dependencies as specs rather
|
data/doc/_layouts/default.html
CHANGED
@@ -63,19 +63,12 @@
|
|
63
63
|
</ol>
|
64
64
|
</li>
|
65
65
|
<li>
|
66
|
-
<form action='http://www.google.com/
|
67
|
-
<input name='
|
68
|
-
<input name='cof' type='hidden' value='FORID:0'>
|
69
|
-
<input name='q' size='20' type='text'>
|
66
|
+
<form action='http://www.google.com/' onsubmit="document.getElementById('gQuery').value += ' site:buildr.apache.org'">
|
67
|
+
<input name='q' size='20' type='text' id='gQuery'>
|
70
68
|
<input name='sa' type='submit' value='Search'>
|
71
69
|
<img alt='Google Custom Search' src='http://www.google.com/coop/images/google_custom_search_smnar.gif'>
|
72
70
|
</form>
|
73
71
|
</li>
|
74
|
-
<li>The Buildr Book
|
75
|
-
<p><a href='http://www.amazon.com/Buildr/dp/1442160942/'><img src='images/1442160941-frontcover.jpg' style='width:120px'></a></p>
|
76
|
-
<p>Based on the Buildr documentation, available from <a href='http://www.amazon.com/Buildr/dp/1442160942/'>Amazon</a> and
|
77
|
-
<a href='http://www.createspace.com/3382199'>CreateSpace</a></p>
|
78
|
-
</li>
|
79
72
|
</ol>
|
80
73
|
</div>
|
81
74
|
<div id='content'>
|
data/doc/download.textile
CHANGED
@@ -18,16 +18,28 @@ The source code is included in both source and binary distribution, the Gem dist
|
|
18
18
|
|
19
19
|
h2(#dist). Binaries and Source Code
|
20
20
|
|
21
|
+
h3. buildr 1.5.0 (2016-09-16)
|
22
|
+
|
23
|
+
|_. Package |_. MD5 Checksum |_. PGP |
|
24
|
+
| "buildr-1.5.0-java.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.0/buildr-1.5.0-java.gem | "c3ac21f11a09d6bfc4b390bd20d10ae6":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0-java.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0-java.gem.asc |
|
25
|
+
| "buildr-1.5.0-x86-mswin32.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.0/buildr-1.5.0-x86-mswin32.gem | "8d2e5eebef6aa41f9fd52895a28a1564":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0-x86-mswin32.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0-x86-mswin32.gem.asc |
|
26
|
+
| "buildr-1.5.0.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.0/buildr-1.5.0.gem | "b94e86a215764d66f85d2009258c85d2":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0.gem.asc |
|
27
|
+
| "buildr-1.5.0.tgz":http://www.apache.org/dyn/closer.cgi/buildr/1.5.0/buildr-1.5.0.tgz | "61fbfcbadc43e146a362a581f7e7b8da":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0.tgz.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0.tgz.asc |
|
28
|
+
| "buildr-1.5.0.zip":http://www.apache.org/dyn/closer.cgi/buildr/1.5.0/buildr-1.5.0.zip | "efbc527597b143df2415b291b1c17b83":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0.zip.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.0/buildr-1.5.0.zip.asc |
|
29
|
+
|
30
|
+
p>. ("Release signing keys":http://www.apache.org/dist/buildr/1.5.0/KEYS)
|
31
|
+
|
32
|
+
|
21
33
|
h3. buildr 1.4.25 (2016-04-18)
|
22
34
|
|
23
35
|
|_. Package |_. MD5 Checksum |_. PGP |
|
24
|
-
| "buildr-1.4.25-java.gem":http://
|
25
|
-
| "buildr-1.4.25-x86-mswin32.gem":http://
|
26
|
-
| "buildr-1.4.25.gem":http://
|
27
|
-
| "buildr-1.4.25.tgz":http://
|
28
|
-
| "buildr-1.4.25.zip":http://
|
36
|
+
| "buildr-1.4.25-java.gem":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25-java.gem | "eecba636a7ba96863667473dbd012511":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25-java.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25-java.gem.asc |
|
37
|
+
| "buildr-1.4.25-x86-mswin32.gem":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25-x86-mswin32.gem | "139544a50c180cbcf90c542cf3c49b84":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25-x86-mswin32.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25-x86-mswin32.gem.asc |
|
38
|
+
| "buildr-1.4.25.gem":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.gem | "81347fb7fcee450f90933b73caf07344":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.gem.asc |
|
39
|
+
| "buildr-1.4.25.tgz":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.tgz | "020aadc399401b4138a53008d6632d7c":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.tgz.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.tgz.asc |
|
40
|
+
| "buildr-1.4.25.zip":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.zip | "7ca869a18fe79cc661eee40a23915806":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.zip.md5 | "Sig":http://archive.apache.org/dist/buildr/1.4.25/buildr-1.4.25.zip.asc |
|
29
41
|
|
30
|
-
p>. ("Release signing keys":http://
|
42
|
+
p>. ("Release signing keys":http://archive.apache.org/dist/buildr/1.4.25/KEYS)
|
31
43
|
|
32
44
|
|
33
45
|
h3. buildr 1.4.24 (2016-03-19)
|
data/doc/index.textile
CHANGED
@@ -46,28 +46,22 @@ 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.
|
50
|
-
* Change:
|
51
|
-
*
|
52
|
-
|
53
|
-
*
|
54
|
-
|
55
|
-
|
56
|
-
*
|
57
|
-
|
58
|
-
*
|
59
|
-
* Fixed:
|
60
|
-
|
61
|
-
*
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
* Added: Add checkstyle.additional_project_names configuration to Checkstyle addon to
|
66
|
-
ease merging in the source paths from multiple projects into one Checkstyle task.
|
67
|
-
* Added: Add pmd.additional_project_names configuration to PMD addon to ease merging in
|
68
|
-
the source paths from multiple projects into one PMD task.
|
69
|
-
* Change: Update the default GWT version used in the GWT addon to the latest release 2.7.0.
|
70
|
-
* Change: Update the checkstyle addon to use checkstyle 6.12.1.
|
49
|
+
Highlights from Buildr 1.5.0 (2016-09-23)
|
50
|
+
* Change: Move to default on Scala 2.11.
|
51
|
+
* Added: BUILDR-577 Allow remote repo to be added with http basic auth support. Submitted by Michael Guymon.
|
52
|
+
* Added: BUILDR-572 Allow to upload unique version (timestamp based) snapshot artifacts to a repository. Submitted by Brice Figureau.
|
53
|
+
* Added: BUILDR-703 release: allow THIS_VERSION to be defined in another file
|
54
|
+
* Fixed: BUILDR-565 resources are not included in the war if defined after package call
|
55
|
+
* Fixed: BUILDR-621 ZipTask creates zip file with entries not sorted by path causing very slow unzipping.
|
56
|
+
* Fixed: BUILDR-695 transitive doesn't support ${project.parent.version} in POM.
|
57
|
+
* Fixed: BUILDR-653 Using Eclipse compiler (ECJ)
|
58
|
+
* Fixed: BUILDR-476 Buildr doesn't respect company repository manager
|
59
|
+
* Fixed: BUILDR-454 Definition-level parent-child references-by-name fail in 1.4.0 but not in 1.3.5. Submitted by Rhett Sutphin.
|
60
|
+
* Fixed: BUILDR-620 resources.filter should not run on non-text files
|
61
|
+
* Fixed: BUILDR-486 Buildr-generated poms should include dependencies
|
62
|
+
* Change: Update the custom_pom addon to generate poms with exclusions section that excludes
|
63
|
+
all transitive dependencies. This is required as buildr dependencies are not
|
64
|
+
transitive while Maven's dependencies are transitive by default.
|
71
65
|
|
72
66
|
This is a partial list -- see the "CHANGELOG":CHANGELOG for full details.
|
73
67
|
|
data/lib/buildr/core/test.rb
CHANGED
@@ -357,7 +357,6 @@ module Buildr #:nodoc:
|
|
357
357
|
def using(*args)
|
358
358
|
args.pop.each { |key, value| options[key.to_sym] = value } if Hash === args.last
|
359
359
|
args.each do |name|
|
360
|
-
info name
|
361
360
|
if TestFramework.has?(name)
|
362
361
|
self.framework = name
|
363
362
|
elsif name == :integration
|
Binary file
|
@@ -41,7 +41,7 @@ public class JavaTestFilter {
|
|
41
41
|
for (int i = 0 ; i < paths.length ; ++i) {
|
42
42
|
File file = new File(paths[i]).getCanonicalFile();
|
43
43
|
if (file.exists())
|
44
|
-
urls[i] = file.toURL();
|
44
|
+
urls[i] = file.toURI().toURL();
|
45
45
|
else
|
46
46
|
throw new IOException("No file or directory with the name " + file);
|
47
47
|
}
|
data/lib/buildr/version.rb
CHANGED
data/rakelib/release.rake
CHANGED
@@ -20,9 +20,9 @@ task 'release' do |task, args|
|
|
20
20
|
# First, we need to get all the staged files from Apache to _release.
|
21
21
|
mkpath '_release'
|
22
22
|
lambda do
|
23
|
-
url = "
|
23
|
+
url = "https://dist.apache.org/repos/dist/dev/buildr/#{spec.version}"
|
24
24
|
puts "Populating _release directory from #{url} ..."
|
25
|
-
sh "
|
25
|
+
sh "svn co #{url} _release/#{spec.version}"
|
26
26
|
puts '[X] Staged files are now in _release'
|
27
27
|
end.call
|
28
28
|
|
data/rakelib/stage.rake
CHANGED
@@ -19,6 +19,7 @@ require 'digest/sha1'
|
|
19
19
|
gpg_cmd = 'gpg2'
|
20
20
|
|
21
21
|
STAGE_DATE = ENV['STAGE_DATE'] || Time.now.strftime('%Y-%m-%d')
|
22
|
+
RC_VERSION = ENV['RC_VERSION'] || ""
|
22
23
|
|
23
24
|
task 'prepare' do |task, args|
|
24
25
|
gpg_arg = args.gpg || ENV['gpg']
|
@@ -85,13 +86,6 @@ task 'prepare' do |task, args|
|
|
85
86
|
sh 'prince --version'
|
86
87
|
puts '[X] We have prince available'
|
87
88
|
end.call
|
88
|
-
|
89
|
-
# Need lftp to push the stage website to home.apache.org
|
90
|
-
lambda do
|
91
|
-
puts 'Checking that lftp is available...'
|
92
|
-
sh 'lftp --version'
|
93
|
-
puts '[X] We have lftp available'
|
94
|
-
end.call
|
95
89
|
|
96
90
|
raise "Can not run stage process under jruby" if RUBY_PLATFORM[/java/]
|
97
91
|
raise "Can not run staging process under older rubies" unless RUBY_VERSION >= '1.9'
|
@@ -182,10 +176,13 @@ p>. ("Release signing keys":#{official}/KEYS)
|
|
182
176
|
end.call
|
183
177
|
|
184
178
|
|
185
|
-
# Move everything over to
|
179
|
+
# Move everything over to https://dist.apache.org/repos/dist/dev/buildr so we can vote on it.
|
186
180
|
lambda do
|
187
181
|
puts "Uploading _staged directory ..."
|
188
|
-
sh "
|
182
|
+
sh "svn mkdir https://dist.apache.org/repos/dist/dev/buildr/#{spec.version}#{RC_VERSION} -m 'Creating Buildr release candidate #{spec.version}#{RC_VERSION}'"
|
183
|
+
sh "cd _staged; svn checkout https://dist.apache.org/repos/dist/dev/buildr/#{spec.version}#{RC_VERSION} ."
|
184
|
+
sh "cd _staged; svn add *"
|
185
|
+
sh "cd _staged; svn commit -m 'Uploading Buildr RC #{spec.version}#{RC_VERSION}'"
|
189
186
|
puts "[X] Uploaded _staged directory"
|
190
187
|
end.call
|
191
188
|
|
@@ -194,7 +191,7 @@ p>. ("Release signing keys":#{official}/KEYS)
|
|
194
191
|
# email for you and vote on it.
|
195
192
|
lambda do
|
196
193
|
# Need to know who you are on Apache, local user may be different (see .ssh/config).
|
197
|
-
base_url = "
|
194
|
+
base_url = "https://dist.apache.org/repos/dist/dev/buildr/#{spec.version}"
|
198
195
|
# Need changes for this release only.
|
199
196
|
changelog = File.read('CHANGELOG').scan(/(^(\d+\.\d+(?:\.\d+)?)\s+\(\d{4}-\d{2}-\d{2}\)\s*((:?^[^\n]+\n)*))/)
|
200
197
|
changes = changelog[0][2]
|
data/spec/java/tests_spec.rb
CHANGED
@@ -415,6 +415,21 @@ describe Buildr::TestNG do
|
|
415
415
|
project('foo').test.compile.dependencies.should include(artifact("#{group}:jmock:jar:#{JMock.version}"))
|
416
416
|
project('foo').test.dependencies.should include(artifact("#{group}:jmock:jar:#{JMock.version}"))
|
417
417
|
end
|
418
|
+
|
419
|
+
it 'should parse test classes in paths containing escaped sequences' do
|
420
|
+
write 'bar%2F/src/test/java/com/example/AnnotatedClass.java', <<-JAVA
|
421
|
+
package com.example;
|
422
|
+
@org.testng.annotations.Test
|
423
|
+
public class AnnotatedClass { }
|
424
|
+
JAVA
|
425
|
+
define 'foo' do
|
426
|
+
define 'bar%2F' do
|
427
|
+
test.using(:testng)
|
428
|
+
end
|
429
|
+
end
|
430
|
+
project('foo:bar%2F').test.invoke
|
431
|
+
project('foo:bar%2F').test.tests.should include('com.example.AnnotatedClass')
|
432
|
+
end
|
418
433
|
|
419
434
|
it 'should include classes using TestNG annotations' do
|
420
435
|
write 'src/test/java/com/example/AnnotatedClass.java', <<-JAVA
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: buildr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.0
|
4
|
+
version: 1.5.0
|
5
5
|
platform: x86-mswin32
|
6
6
|
authors:
|
7
7
|
- Apache Buildr
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -522,7 +522,6 @@ files:
|
|
522
522
|
- doc/css/syntax.css
|
523
523
|
- doc/download.textile
|
524
524
|
- doc/extending.textile
|
525
|
-
- doc/images/1442160941-frontcover.jpg
|
526
525
|
- doc/images/asf-logo.gif
|
527
526
|
- doc/images/asf-logo.png
|
528
527
|
- doc/images/buildr-hires.png
|
Binary file
|