buildr 1.5.2-x86-mswin32 → 1.5.3-x86-mswin32
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 +4 -4
- data/CHANGELOG +5 -0
- data/addon/buildr/gwt.rb +37 -1
- data/doc/download.textile +18 -6
- data/doc/index.textile +5 -17
- data/lib/buildr/java/packaging.rb +1 -1
- data/lib/buildr/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d30858dd6f577fd87d406b73df5febca172787ba
|
4
|
+
data.tar.gz: 43ce49c0bd10b9c408360e1c6883f6f36e3a475d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 186c23b382fc34d1237694ee013528f5801c57f974cd1e2eb563562b0f16f779dea5c0a96ce2b8638fc40522cad8ce3215b84b3667058fe36c7080fc02026690
|
7
|
+
data.tar.gz: 6fb9dd78b3e8c03d129b9d340d8aab16e79ea214ba03086077517098daab73833ca6a1c4a856139e84e06aea4039975c13fa92a0c16d42b0221352aa0b41f073
|
data/CHANGELOG
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
1.5.3 (2017-05-17)
|
2
|
+
* Change: Add support for gwt 2.8.1 to gwt addon.
|
3
|
+
* Fixed: Avoid error "undefined local variable or method `pom'" when invoking the `JarTask` without it being
|
4
|
+
registered through the `package` helper`. Reported by Dieter Vrancken.
|
5
|
+
|
1
6
|
1.5.2 (2017-04-03)
|
2
7
|
* Change: Update TestNG version to 6.11.
|
3
8
|
* Change: BUILDR-731 - Enhance Sonar addon to support configuration of the project version. Submitted by Ross Mahony.
|
data/addon/buildr/gwt.rb
CHANGED
@@ -22,7 +22,7 @@ module Buildr
|
|
22
22
|
end
|
23
23
|
|
24
24
|
def version
|
25
|
-
@version || Buildr.settings.build['gwt'] || '2.8.
|
25
|
+
@version || Buildr.settings.build['gwt'] || '2.8.1'
|
26
26
|
end
|
27
27
|
|
28
28
|
# The specs for requirements
|
@@ -57,6 +57,42 @@ module Buildr
|
|
57
57
|
com.ibm.icu:icu4j:jar:50.1.1
|
58
58
|
tapestry:tapestry:jar:4.0.2
|
59
59
|
|
60
|
+
javax.annotation:javax.annotation-api:jar:1.2
|
61
|
+
javax.servlet:javax.servlet-api:jar:3.1.0
|
62
|
+
org.eclipse.jetty:jetty-annotations:jar:9.2.14.v20151106
|
63
|
+
org.eclipse.jetty:jetty-continuation:jar:9.2.14.v20151106
|
64
|
+
org.eclipse.jetty:jetty-http:jar:9.2.14.v20151106
|
65
|
+
org.eclipse.jetty:jetty-io:jar:9.2.14.v20151106
|
66
|
+
org.eclipse.jetty:jetty-jndi:jar:9.2.14.v20151106
|
67
|
+
org.eclipse.jetty:jetty-plus:jar:9.2.14.v20151106
|
68
|
+
org.eclipse.jetty:jetty-security:jar:9.2.14.v20151106
|
69
|
+
org.eclipse.jetty:jetty-server:jar:9.2.14.v20151106
|
70
|
+
org.eclipse.jetty:jetty-servlet:jar:9.2.14.v20151106
|
71
|
+
org.eclipse.jetty:jetty-servlets:jar:9.2.14.v20151106
|
72
|
+
org.eclipse.jetty:jetty-util:jar:9.2.14.v20151106
|
73
|
+
org.eclipse.jetty:jetty-webapp:jar:9.2.14.v20151106
|
74
|
+
org.eclipse.jetty:jetty-xml:jar:9.2.14.v20151106
|
75
|
+
org.eclipse.jetty.toolchain:jetty-schemas:jar:3.1.M0
|
76
|
+
) + validation_deps
|
77
|
+
elsif v == '2.8.1'
|
78
|
+
%w(
|
79
|
+
com.google.jsinterop:jsinterop-annotations:jar:1.0.1
|
80
|
+
com.google.jsinterop:jsinterop-annotations:jar:sources:1.0.1
|
81
|
+
org.w3c.css:sac:jar:1.3
|
82
|
+
com.google.gwt:gwt-dev:jar:2.8.1
|
83
|
+
com.google.gwt:gwt-user:jar:2.8.1
|
84
|
+
com.google.code.gson:gson:jar:2.6.2
|
85
|
+
org.ow2.asm:asm:jar:5.0.3
|
86
|
+
org.ow2.asm:asm-util:jar:5.0.3
|
87
|
+
org.ow2.asm:asm-tree:jar:5.0.3
|
88
|
+
org.ow2.asm:asm-commons:jar:5.0.3
|
89
|
+
colt:colt:jar:1.2.0
|
90
|
+
ant:ant:jar:1.6.5
|
91
|
+
commons-collections:commons-collections:jar:3.2.2
|
92
|
+
commons-io:commons-io:jar:2.4
|
93
|
+
com.ibm.icu:icu4j:jar:50.1.1
|
94
|
+
tapestry:tapestry:jar:4.0.2
|
95
|
+
|
60
96
|
javax.annotation:javax.annotation-api:jar:1.2
|
61
97
|
javax.servlet:javax.servlet-api:jar:3.1.0
|
62
98
|
org.eclipse.jetty:jetty-annotations:jar:9.2.14.v20151106
|
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.2 (2017-04-03)
|
22
|
+
|
23
|
+
|_. Package |_. MD5 Checksum |_. PGP |
|
24
|
+
| "buildr-1.5.2-java.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.2/buildr-1.5.2-java.gem | "72ac9122e057112f5699b39ba237432f":http://www.apache.org/dist/buildr/1.5.2/buildr-1.5.2-java.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.2/buildr-1.5.2-java.gem.asc |
|
25
|
+
| "buildr-1.5.2-x86-mswin32.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.2/buildr-1.5.2-x86-mswin32.gem | "0b34fd2fc14236bcecc877901d58080d":http://www.apache.org/dist/buildr/1.5.2/buildr-1.5.2-x86-mswin32.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.2/buildr-1.5.2-x86-mswin32.gem.asc |
|
26
|
+
| "buildr-1.5.2.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.5.2/buildr-1.5.2.gem | "6645bfa5380490233affa9adb9e388a1":http://www.apache.org/dist/buildr/1.5.2/buildr-1.5.2.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.2/buildr-1.5.2.gem.asc |
|
27
|
+
| "buildr-1.5.2.tgz":http://www.apache.org/dyn/closer.cgi/buildr/1.5.2/buildr-1.5.2.tgz | "77e4ef6ce1b408943d98c848f86feb10":http://www.apache.org/dist/buildr/1.5.2/buildr-1.5.2.tgz.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.2/buildr-1.5.2.tgz.asc |
|
28
|
+
| "buildr-1.5.2.zip":http://www.apache.org/dyn/closer.cgi/buildr/1.5.2/buildr-1.5.2.zip | "793d86899fd3c3eb326a0ea920b1275a":http://www.apache.org/dist/buildr/1.5.2/buildr-1.5.2.zip.md5 | "Sig":http://www.apache.org/dist/buildr/1.5.2/buildr-1.5.2.zip.asc |
|
29
|
+
|
30
|
+
p>. ("Release signing keys":http://www.apache.org/dist/buildr/1.5.2/KEYS)
|
31
|
+
|
32
|
+
|
21
33
|
h3. buildr 1.5.1 (2017-03-11)
|
22
34
|
|
23
35
|
|_. Package |_. MD5 Checksum |_. PGP |
|
24
|
-
| "buildr-1.5.1-java.gem":http://
|
25
|
-
| "buildr-1.5.1-x86-mswin32.gem":http://
|
26
|
-
| "buildr-1.5.1.gem":http://
|
27
|
-
| "buildr-1.5.1.tgz":http://
|
28
|
-
| "buildr-1.5.1.zip":http://
|
36
|
+
| "buildr-1.5.1-java.gem":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1-java.gem | "bd1ff5faf28129b26a2efe6302be6619":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1-java.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1-java.gem.asc |
|
37
|
+
| "buildr-1.5.1-x86-mswin32.gem":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1-x86-mswin32.gem | "834b07fba980f338e71ce0519d760c60":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1-x86-mswin32.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1-x86-mswin32.gem.asc |
|
38
|
+
| "buildr-1.5.1.gem":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1.gem | "96675d557f14706f3f3888e8ac3d160f":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1.gem.md5 | "Sig":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1.gem.asc |
|
39
|
+
| "buildr-1.5.1.tgz":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1.tgz | "fa12a02ca8dacaaa3ab1a7a99a5cee0a":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1.tgz.md5 | "Sig":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1.tgz.asc |
|
40
|
+
| "buildr-1.5.1.zip":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1.zip | "276c2753a68282d84d7b6ed6cc690a99":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1.zip.md5 | "Sig":http://archive.apache.org/dist/buildr/1.5.1/buildr-1.5.1.zip.asc |
|
29
41
|
|
30
|
-
p>. ("Release signing keys":http://
|
42
|
+
p>. ("Release signing keys":http://archive.apache.org/dist/buildr/1.5.1/KEYS)
|
31
43
|
|
32
44
|
|
33
45
|
h3. buildr 1.5.0 (2016-09-23)
|
data/doc/index.textile
CHANGED
@@ -46,6 +46,11 @@ 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.5.3 (2017-05-17)
|
50
|
+
* Change: Add support for gwt 2.8.1 to gwt addon.
|
51
|
+
* Fixed: Avoid error "undefined local variable or method `pom'" when invoking the `JarTask` without it being
|
52
|
+
registered through the `package` helper`. Reported by Dieter Vrancken.
|
53
|
+
|
49
54
|
Highlights from Buildr 1.5.2 (2017-04-03)
|
50
55
|
* Change: Update TestNG version to 6.11.
|
51
56
|
* Change: BUILDR-731 - Enhance Sonar addon to support configuration of the project version. Submitted by Ross Mahony.
|
@@ -58,23 +63,6 @@ Highlights from Buildr 1.5.1 (2017-03-11)
|
|
58
63
|
* Change: BUILDR-719 Change User-Agent when uploading artifacts
|
59
64
|
* Change: BUILDR-709 Integrate `buildr/custom_pom` into core and just make it the default pom generated.
|
60
65
|
|
61
|
-
Highlights from Buildr 1.5.0 (2016-09-23)
|
62
|
-
* Change: Move to default on Scala 2.11.
|
63
|
-
* Added: BUILDR-577 Allow remote repo to be added with http basic auth support. Submitted by Michael Guymon.
|
64
|
-
* Added: BUILDR-572 Allow to upload unique version (timestamp based) snapshot artifacts to a repository. Submitted by Brice Figureau.
|
65
|
-
* Added: BUILDR-703 release: allow THIS_VERSION to be defined in another file
|
66
|
-
* Fixed: BUILDR-565 resources are not included in the war if defined after package call
|
67
|
-
* Fixed: BUILDR-621 ZipTask creates zip file with entries not sorted by path causing very slow unzipping.
|
68
|
-
* Fixed: BUILDR-695 transitive doesn't support ${project.parent.version} in POM.
|
69
|
-
* Fixed: BUILDR-653 Using Eclipse compiler (ECJ)
|
70
|
-
* Fixed: BUILDR-476 Buildr doesn't respect company repository manager
|
71
|
-
* 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.
|
72
|
-
* Fixed: BUILDR-620 resources.filter should not run on non-text files
|
73
|
-
* Fixed: BUILDR-486 Buildr-generated poms should include dependencies
|
74
|
-
* Change: Update the custom_pom addon to generate poms with exclusions section that excludes
|
75
|
-
all transitive dependencies. This is required as buildr dependencies are not
|
76
|
-
transitive while Maven's dependencies are transitive by default.
|
77
|
-
|
78
66
|
This is a partial list -- see the "CHANGELOG":CHANGELOG for full details.
|
79
67
|
|
80
68
|
h2(#notices). Credits & Notices
|
@@ -211,7 +211,7 @@ module Buildr #:nodoc:
|
|
211
211
|
def initialize(*args) #:nodoc:
|
212
212
|
super
|
213
213
|
enhance do
|
214
|
-
pom.invoke rescue nil if pom && pom != self && classifier.nil?
|
214
|
+
pom.invoke rescue nil if respond_to?(:pom) && pom && pom != self && classifier.nil?
|
215
215
|
end
|
216
216
|
end
|
217
217
|
|
data/lib/buildr/version.rb
CHANGED
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.
|
4
|
+
version: 1.5.3
|
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: 2017-
|
11
|
+
date: 2017-05-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|