buildr-gemjar 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (252) hide show
  1. data/.braids +8 -0
  2. data/.gitignore +5 -0
  3. data/.rvmrc +1 -0
  4. data/CHANGELOG.md +4 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE +20 -0
  7. data/README.md +98 -0
  8. data/Rakefile +8 -0
  9. data/buildr-gemjar.gemspec +42 -0
  10. data/lib/buildr-gemjar.rb +162 -0
  11. data/lib/buildr-gemjar/version.rb +3 -0
  12. data/meta.rakefile +30 -0
  13. data/spec/buildr-gemjar/version_spec.rb +11 -0
  14. data/spec/buildr-gemjar_spec.rb +179 -0
  15. data/spec/repo_builder.rb +59 -0
  16. data/spec/spec_helper.rb +44 -0
  17. data/vendor/buildr/.gitignore +17 -0
  18. data/vendor/buildr/CHANGELOG +1283 -0
  19. data/vendor/buildr/Gemfile +4 -0
  20. data/vendor/buildr/LICENSE +176 -0
  21. data/vendor/buildr/NOTICE +26 -0
  22. data/vendor/buildr/README.rdoc +134 -0
  23. data/vendor/buildr/Rakefile +44 -0
  24. data/vendor/buildr/_buildr +35 -0
  25. data/vendor/buildr/_jbuildr +35 -0
  26. data/vendor/buildr/addon/buildr/antlr.rb +65 -0
  27. data/vendor/buildr/addon/buildr/bnd.rb +147 -0
  28. data/vendor/buildr/addon/buildr/cobertura.rb +22 -0
  29. data/vendor/buildr/addon/buildr/drb.rb +281 -0
  30. data/vendor/buildr/addon/buildr/emma.rb +22 -0
  31. data/vendor/buildr/addon/buildr/hibernate.rb +149 -0
  32. data/vendor/buildr/addon/buildr/javacc.rb +85 -0
  33. data/vendor/buildr/addon/buildr/jaxb_xjc.rb +72 -0
  34. data/vendor/buildr/addon/buildr/jdepend.rb +60 -0
  35. data/vendor/buildr/addon/buildr/jetty.rb +248 -0
  36. data/vendor/buildr/addon/buildr/jibx.rb +86 -0
  37. data/vendor/buildr/addon/buildr/nailgun.rb +221 -0
  38. data/vendor/buildr/addon/buildr/openjpa.rb +88 -0
  39. data/vendor/buildr/addon/buildr/org/apache/buildr/BuildrNail$Main.class +0 -0
  40. data/vendor/buildr/addon/buildr/org/apache/buildr/BuildrNail.class +0 -0
  41. data/vendor/buildr/addon/buildr/org/apache/buildr/BuildrNail.java +41 -0
  42. data/vendor/buildr/addon/buildr/org/apache/buildr/JettyWrapper$1.class +0 -0
  43. data/vendor/buildr/addon/buildr/org/apache/buildr/JettyWrapper$BuildrHandler.class +0 -0
  44. data/vendor/buildr/addon/buildr/org/apache/buildr/JettyWrapper.class +0 -0
  45. data/vendor/buildr/addon/buildr/org/apache/buildr/JettyWrapper.java +144 -0
  46. data/vendor/buildr/addon/buildr/protobuf.rb +88 -0
  47. data/vendor/buildr/addon/buildr/xmlbeans.rb +93 -0
  48. data/vendor/buildr/all-in-one/_buildr +19 -0
  49. data/vendor/buildr/all-in-one/buildr +368 -0
  50. data/vendor/buildr/all-in-one/buildr.cmd +1 -0
  51. data/vendor/buildr/bin/buildr +19 -0
  52. data/vendor/buildr/buildr.buildfile +58 -0
  53. data/vendor/buildr/buildr.gemspec +74 -0
  54. data/vendor/buildr/doc/_config.yml +1 -0
  55. data/vendor/buildr/doc/_layouts/default.html +90 -0
  56. data/vendor/buildr/doc/_layouts/preface.html +22 -0
  57. data/vendor/buildr/doc/artifacts.textile +217 -0
  58. data/vendor/buildr/doc/building.textile +276 -0
  59. data/vendor/buildr/doc/contributing.textile +268 -0
  60. data/vendor/buildr/doc/css/default.css +236 -0
  61. data/vendor/buildr/doc/css/print.css +101 -0
  62. data/vendor/buildr/doc/css/syntax.css +23 -0
  63. data/vendor/buildr/doc/download.textile +138 -0
  64. data/vendor/buildr/doc/extending.textile +212 -0
  65. data/vendor/buildr/doc/images/1442160941-frontcover.jpg +0 -0
  66. data/vendor/buildr/doc/images/asf-logo.gif +0 -0
  67. data/vendor/buildr/doc/images/asf-logo.png +0 -0
  68. data/vendor/buildr/doc/images/buildr-hires.png +0 -0
  69. data/vendor/buildr/doc/images/buildr.png +0 -0
  70. data/vendor/buildr/doc/images/favicon.png +0 -0
  71. data/vendor/buildr/doc/images/growl-icon.tiff +0 -0
  72. data/vendor/buildr/doc/images/note.png +0 -0
  73. data/vendor/buildr/doc/images/project-structure.png +0 -0
  74. data/vendor/buildr/doc/images/tip.png +0 -0
  75. data/vendor/buildr/doc/images/zbuildr.png +0 -0
  76. data/vendor/buildr/doc/images/zbuildr.tif +0 -0
  77. data/vendor/buildr/doc/index.textile +69 -0
  78. data/vendor/buildr/doc/installing.textile +284 -0
  79. data/vendor/buildr/doc/languages.textile +599 -0
  80. data/vendor/buildr/doc/mailing_lists.textile +29 -0
  81. data/vendor/buildr/doc/more_stuff.textile +845 -0
  82. data/vendor/buildr/doc/packaging.textile +618 -0
  83. data/vendor/buildr/doc/preface.textile +54 -0
  84. data/vendor/buildr/doc/projects.textile +276 -0
  85. data/vendor/buildr/doc/quick_start.textile +210 -0
  86. data/vendor/buildr/doc/releasing.textile +117 -0
  87. data/vendor/buildr/doc/scripts/buildr-git.rb +512 -0
  88. data/vendor/buildr/doc/scripts/gitflow.rb +296 -0
  89. data/vendor/buildr/doc/scripts/install-jruby.sh +44 -0
  90. data/vendor/buildr/doc/scripts/install-linux.sh +73 -0
  91. data/vendor/buildr/doc/scripts/install-osx.sh +52 -0
  92. data/vendor/buildr/doc/settings_profiles.textile +287 -0
  93. data/vendor/buildr/doc/testing.textile +247 -0
  94. data/vendor/buildr/etc/KEYS +189 -0
  95. data/vendor/buildr/lib/buildr.rb +44 -0
  96. data/vendor/buildr/lib/buildr/clojure.rb +34 -0
  97. data/vendor/buildr/lib/buildr/clojure/shell.rb +52 -0
  98. data/vendor/buildr/lib/buildr/core.rb +34 -0
  99. data/vendor/buildr/lib/buildr/core/application.rb +700 -0
  100. data/vendor/buildr/lib/buildr/core/build.rb +516 -0
  101. data/vendor/buildr/lib/buildr/core/cc.rb +166 -0
  102. data/vendor/buildr/lib/buildr/core/checks.rb +253 -0
  103. data/vendor/buildr/lib/buildr/core/common.rb +151 -0
  104. data/vendor/buildr/lib/buildr/core/compile.rb +622 -0
  105. data/vendor/buildr/lib/buildr/core/doc.rb +276 -0
  106. data/vendor/buildr/lib/buildr/core/environment.rb +129 -0
  107. data/vendor/buildr/lib/buildr/core/filter.rb +404 -0
  108. data/vendor/buildr/lib/buildr/core/generate.rb +197 -0
  109. data/vendor/buildr/lib/buildr/core/help.rb +119 -0
  110. data/vendor/buildr/lib/buildr/core/jrebel.rb +42 -0
  111. data/vendor/buildr/lib/buildr/core/linux.rb +30 -0
  112. data/vendor/buildr/lib/buildr/core/osx.rb +46 -0
  113. data/vendor/buildr/lib/buildr/core/progressbar.rb +161 -0
  114. data/vendor/buildr/lib/buildr/core/project.rb +975 -0
  115. data/vendor/buildr/lib/buildr/core/run.rb +43 -0
  116. data/vendor/buildr/lib/buildr/core/shell.rb +137 -0
  117. data/vendor/buildr/lib/buildr/core/test.rb +843 -0
  118. data/vendor/buildr/lib/buildr/core/transports.rb +565 -0
  119. data/vendor/buildr/lib/buildr/core/util.rb +537 -0
  120. data/vendor/buildr/lib/buildr/groovy.rb +20 -0
  121. data/vendor/buildr/lib/buildr/groovy/bdd.rb +106 -0
  122. data/vendor/buildr/lib/buildr/groovy/compiler.rb +153 -0
  123. data/vendor/buildr/lib/buildr/groovy/doc.rb +76 -0
  124. data/vendor/buildr/lib/buildr/groovy/shell.rb +57 -0
  125. data/vendor/buildr/lib/buildr/ide.rb +19 -0
  126. data/vendor/buildr/lib/buildr/ide/eclipse.rb +427 -0
  127. data/vendor/buildr/lib/buildr/ide/eclipse/java.rb +53 -0
  128. data/vendor/buildr/lib/buildr/ide/eclipse/plugin.rb +71 -0
  129. data/vendor/buildr/lib/buildr/ide/eclipse/scala.rb +68 -0
  130. data/vendor/buildr/lib/buildr/ide/idea.rb +576 -0
  131. data/vendor/buildr/lib/buildr/java.rb +25 -0
  132. data/vendor/buildr/lib/buildr/java/ant.rb +94 -0
  133. data/vendor/buildr/lib/buildr/java/bdd.rb +460 -0
  134. data/vendor/buildr/lib/buildr/java/cobertura.rb +297 -0
  135. data/vendor/buildr/lib/buildr/java/commands.rb +223 -0
  136. data/vendor/buildr/lib/buildr/java/compiler.rb +135 -0
  137. data/vendor/buildr/lib/buildr/java/deprecated.rb +141 -0
  138. data/vendor/buildr/lib/buildr/java/doc.rb +86 -0
  139. data/vendor/buildr/lib/buildr/java/ecj.rb +69 -0
  140. data/vendor/buildr/lib/buildr/java/emma.rb +244 -0
  141. data/vendor/buildr/lib/buildr/java/external.rb +73 -0
  142. data/vendor/buildr/lib/buildr/java/jruby.rb +122 -0
  143. data/vendor/buildr/lib/buildr/java/jtestr_result.rb +295 -0
  144. data/vendor/buildr/lib/buildr/java/jtestr_runner.rb.erb +116 -0
  145. data/vendor/buildr/lib/buildr/java/org/apache/buildr/JavaTestFilter.class +0 -0
  146. data/vendor/buildr/lib/buildr/java/org/apache/buildr/JavaTestFilter.java +142 -0
  147. data/vendor/buildr/lib/buildr/java/packaging.rb +734 -0
  148. data/vendor/buildr/lib/buildr/java/pom.rb +178 -0
  149. data/vendor/buildr/lib/buildr/java/rjb.rb +154 -0
  150. data/vendor/buildr/lib/buildr/java/test_result.rb +101 -0
  151. data/vendor/buildr/lib/buildr/java/tests.rb +362 -0
  152. data/vendor/buildr/lib/buildr/java/version_requirement.rb +172 -0
  153. data/vendor/buildr/lib/buildr/packaging.rb +25 -0
  154. data/vendor/buildr/lib/buildr/packaging/archive.rb +535 -0
  155. data/vendor/buildr/lib/buildr/packaging/artifact.rb +903 -0
  156. data/vendor/buildr/lib/buildr/packaging/artifact_namespace.rb +984 -0
  157. data/vendor/buildr/lib/buildr/packaging/artifact_search.rb +140 -0
  158. data/vendor/buildr/lib/buildr/packaging/gems.rb +105 -0
  159. data/vendor/buildr/lib/buildr/packaging/package.rb +249 -0
  160. data/vendor/buildr/lib/buildr/packaging/tar.rb +189 -0
  161. data/vendor/buildr/lib/buildr/packaging/version_requirement.rb +192 -0
  162. data/vendor/buildr/lib/buildr/packaging/zip.rb +178 -0
  163. data/vendor/buildr/lib/buildr/packaging/ziptask.rb +356 -0
  164. data/vendor/buildr/lib/buildr/resources/buildr.icns +0 -0
  165. data/vendor/buildr/lib/buildr/resources/completed.png +0 -0
  166. data/vendor/buildr/lib/buildr/resources/failed.png +0 -0
  167. data/vendor/buildr/lib/buildr/resources/icons-license.txt +17 -0
  168. data/vendor/buildr/lib/buildr/run.rb +195 -0
  169. data/vendor/buildr/lib/buildr/scala.rb +26 -0
  170. data/vendor/buildr/lib/buildr/scala/bdd.rb +118 -0
  171. data/vendor/buildr/lib/buildr/scala/compiler.rb +242 -0
  172. data/vendor/buildr/lib/buildr/scala/doc.rb +142 -0
  173. data/vendor/buildr/lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.class +0 -0
  174. data/vendor/buildr/lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.java +57 -0
  175. data/vendor/buildr/lib/buildr/scala/shell.rb +52 -0
  176. data/vendor/buildr/lib/buildr/scala/tests.rb +171 -0
  177. data/vendor/buildr/lib/buildr/shell.rb +185 -0
  178. data/vendor/buildr/lib/buildr/version.rb +18 -0
  179. data/vendor/buildr/rakelib/all-in-one.rake +113 -0
  180. data/vendor/buildr/rakelib/checks.rake +57 -0
  181. data/vendor/buildr/rakelib/doc.rake +137 -0
  182. data/vendor/buildr/rakelib/metrics.rake +39 -0
  183. data/vendor/buildr/rakelib/package.rake +73 -0
  184. data/vendor/buildr/rakelib/release.rake +161 -0
  185. data/vendor/buildr/rakelib/rspec.rake +101 -0
  186. data/vendor/buildr/rakelib/setup.rake +66 -0
  187. data/vendor/buildr/rakelib/stage.rake +220 -0
  188. data/vendor/buildr/spec/addon/bnd_spec.rb +330 -0
  189. data/vendor/buildr/spec/addon/drb_spec.rb +328 -0
  190. data/vendor/buildr/spec/addon/jaxb_xjc_spec.rb +125 -0
  191. data/vendor/buildr/spec/core/application_spec.rb +631 -0
  192. data/vendor/buildr/spec/core/build_spec.rb +837 -0
  193. data/vendor/buildr/spec/core/cc_spec.rb +224 -0
  194. data/vendor/buildr/spec/core/checks_spec.rb +519 -0
  195. data/vendor/buildr/spec/core/common_spec.rb +725 -0
  196. data/vendor/buildr/spec/core/compile_spec.rb +658 -0
  197. data/vendor/buildr/spec/core/doc_spec.rb +195 -0
  198. data/vendor/buildr/spec/core/extension_spec.rb +201 -0
  199. data/vendor/buildr/spec/core/generate_spec.rb +33 -0
  200. data/vendor/buildr/spec/core/project_spec.rb +772 -0
  201. data/vendor/buildr/spec/core/run_spec.rb +93 -0
  202. data/vendor/buildr/spec/core/shell_spec.rb +146 -0
  203. data/vendor/buildr/spec/core/test_spec.rb +1320 -0
  204. data/vendor/buildr/spec/core/transport_spec.rb +544 -0
  205. data/vendor/buildr/spec/core/util_spec.rb +141 -0
  206. data/vendor/buildr/spec/groovy/bdd_spec.rb +80 -0
  207. data/vendor/buildr/spec/groovy/compiler_spec.rb +251 -0
  208. data/vendor/buildr/spec/groovy/doc_spec.rb +65 -0
  209. data/vendor/buildr/spec/ide/eclipse_spec.rb +739 -0
  210. data/vendor/buildr/spec/ide/idea_spec.rb +1144 -0
  211. data/vendor/buildr/spec/java/ant_spec.rb +37 -0
  212. data/vendor/buildr/spec/java/bdd_spec.rb +374 -0
  213. data/vendor/buildr/spec/java/cobertura_spec.rb +112 -0
  214. data/vendor/buildr/spec/java/commands_spec.rb +93 -0
  215. data/vendor/buildr/spec/java/compiler_spec.rb +252 -0
  216. data/vendor/buildr/spec/java/doc_spec.rb +56 -0
  217. data/vendor/buildr/spec/java/ecj_spec.rb +115 -0
  218. data/vendor/buildr/spec/java/emma_spec.rb +121 -0
  219. data/vendor/buildr/spec/java/external_spec.rb +56 -0
  220. data/vendor/buildr/spec/java/java_spec.rb +132 -0
  221. data/vendor/buildr/spec/java/packaging_spec.rb +1270 -0
  222. data/vendor/buildr/spec/java/run_spec.rb +78 -0
  223. data/vendor/buildr/spec/java/test_coverage_helper.rb +257 -0
  224. data/vendor/buildr/spec/java/tests_spec.rb +497 -0
  225. data/vendor/buildr/spec/packaging/archive_spec.rb +775 -0
  226. data/vendor/buildr/spec/packaging/artifact_namespace_spec.rb +743 -0
  227. data/vendor/buildr/spec/packaging/artifact_spec.rb +1066 -0
  228. data/vendor/buildr/spec/packaging/packaging_helper.rb +63 -0
  229. data/vendor/buildr/spec/packaging/packaging_spec.rb +719 -0
  230. data/vendor/buildr/spec/sandbox.rb +165 -0
  231. data/vendor/buildr/spec/scala/bdd_spec.rb +124 -0
  232. data/vendor/buildr/spec/scala/compiler_spec.rb +289 -0
  233. data/vendor/buildr/spec/scala/doc_spec.rb +88 -0
  234. data/vendor/buildr/spec/scala/scala.rb +38 -0
  235. data/vendor/buildr/spec/scala/tests_spec.rb +283 -0
  236. data/vendor/buildr/spec/spec_helpers.rb +369 -0
  237. data/vendor/buildr/spec/version_requirement_spec.rb +143 -0
  238. data/vendor/buildr/spec/xpath_matchers.rb +121 -0
  239. data/vendor/buildr/tests/BUILDR-320/Buildfile +29 -0
  240. data/vendor/buildr/tests/JavaSystemProperty/Buildfile +18 -0
  241. data/vendor/buildr/tests/JavaSystemProperty/src/test/java/FooTest.java +24 -0
  242. data/vendor/buildr/tests/compile_with_parent/Buildfile +18 -0
  243. data/vendor/buildr/tests/compile_with_parent/child/src/main/java/Foo.java +23 -0
  244. data/vendor/buildr/tests/helloWorld/Buildfile +20 -0
  245. data/vendor/buildr/tests/helloWorld/src/main/java/HelloWorld.java +23 -0
  246. data/vendor/buildr/tests/integration_testing.rb +56 -0
  247. data/vendor/buildr/tests/junit3/Buildfile +9 -0
  248. data/vendor/buildr/tests/junit3/src/main/java/Foo.java +23 -0
  249. data/vendor/buildr/tests/junit3/src/test/java/FooTest.java +28 -0
  250. data/vendor/buildr/tests/package_war_as_jar/Buildfile +15 -0
  251. data/vendor/buildr/tests/package_war_as_jar/src/main/java/Foo.java +19 -0
  252. metadata +524 -0
@@ -0,0 +1,59 @@
1
+ require 'pathname'
2
+ require 'fileutils'
3
+
4
+ module BuildrGemjar
5
+ module Spec
6
+ ##
7
+ # Based on the helpers in bundler's spec suite, though substantially simpler.
8
+ module RepoBuilder
9
+ include FileUtils
10
+
11
+ def create_repo
12
+ create_gem "a"
13
+ create_gem "b", "1.1"
14
+ create_gem "b", "1.2"
15
+ create_gem "c", "2.3.2" do |s|
16
+ s.add_dependency 'a'
17
+ end
18
+
19
+ create_gem "jr", "1.0" do |s|
20
+ s.platform = 'ruby'
21
+ s.add_dependency "c"
22
+ end
23
+ create_gem "jr", "1.0" do |s|
24
+ s.platform = 'java'
25
+ s.add_dependency "b"
26
+ end
27
+
28
+ `gem generate_index -q --directory '#{repo_path}'`
29
+ end
30
+
31
+ def create_gem(name, version='1.0', opts={})
32
+ spec = Gem::Specification.new do |s|
33
+ s.name = name
34
+ s.version = version
35
+ s.summary = "A fake #{name}"
36
+ end
37
+ yield spec if block_given?
38
+
39
+ target = opts[:path] || repo_path.join("gems")
40
+ mkdir_p target
41
+ cd target do
42
+ Gem::Builder.new(spec).build
43
+ end
44
+ end
45
+
46
+ def tmp(*path)
47
+ Pathname.new(File.expand_path("../../tmp", __FILE__)).join(*path)
48
+ end
49
+
50
+ def repo_path
51
+ tmp("repo")
52
+ end
53
+
54
+ def rm_repo
55
+ rm_r repo_path
56
+ end
57
+ end
58
+ end
59
+ end
@@ -0,0 +1,44 @@
1
+ require 'rspec'
2
+ require 'zip/zip'
3
+ require 'rubygems/user_interaction'
4
+
5
+ require File.expand_path("../../vendor/buildr/spec/spec_helpers.rb", __FILE__)
6
+
7
+ $LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
8
+ require 'buildr-gemjar'
9
+
10
+ # preload JRuby so it isn't D/Led with each spec
11
+ artifacts(BuildrGemjar.jruby_artifact)
12
+
13
+ require File.expand_path("../repo_builder.rb", __FILE__)
14
+
15
+ ::RSpec.configure do |config|
16
+ config.include BuildrGemjar::Spec::RepoBuilder
17
+
18
+ config.before(:all) do
19
+ @original_gem_ui = Gem::DefaultUserInteraction.ui
20
+ Gem::DefaultUserInteraction.ui = Gem::SilentUI.new
21
+ end
22
+
23
+ config.after(:all) do
24
+ Gem::DefaultUserInteraction.ui = @original_gem_ui
25
+ end
26
+ end
27
+
28
+ ::RSpec::Matchers.define :be_a_jar_containing do |*contents|
29
+ match do |filename|
30
+ @missing = []
31
+ Zip::ZipFile.open(filename) do |zip|
32
+ contents.each do |expected|
33
+ unless zip.find_entry(expected)
34
+ @missing << expected
35
+ end
36
+ end
37
+ end
38
+ @missing.empty?
39
+ end
40
+
41
+ failure_message_for_should do |filename|
42
+ "should result in a jar containing #{@missing.inspect}; #{filename} doesn't."
43
+ end
44
+ end
@@ -0,0 +1,17 @@
1
+ pkg
2
+ failed
3
+ buildr.pdf
4
+ rdoc
5
+ _reports
6
+ _site
7
+ _snapshot
8
+ _staged
9
+ _release
10
+ tmp
11
+ *.swp
12
+ *.log
13
+ _all-in-one
14
+ nbproject
15
+ .rakeTasks
16
+ buildr.iml
17
+ libs
@@ -0,0 +1,1283 @@
1
+ 1.4.5 (Pending)
2
+ * Change: BUILDR-556 Merge buildr-iidea extension back into buildr.
3
+ * Added: BUILDR-555 Add support for the jaxb binding compiler (Mark Petrovic)
4
+ * Added: BUILDR-554 Add support for OSGi bundle packages by importing the
5
+ buildr_bnd plugin
6
+ * Added: BUILDR-125 Add support for <security-role> in application.xml of
7
+ EAR packaging (Mikael Amborn)
8
+ * Added: BUILDR-550 Add support for groovydoc
9
+ * Added: BUILDR-521: System tray notifications for Linux systems
10
+ (via libnotify/notify-send)
11
+ * Added: BUILDR-537 Shell tasks should use JAVA_OPTS by default
12
+ * Added: BUILDR-538 Shell tasks should support passing :java_args
13
+ * Added: BUILDR-544 Support ${groupId} in pom files (Chris Dean)
14
+ * Added: BUILDR-552 Projects may now be defined using project(:name) and a block
15
+ * Added: BUILDR-564 Add package(:scaladoc)
16
+ * Added: Automatically add "require buildr/{groovy,scala}" when generating
17
+ project if Groovy/Scala files are detected.
18
+ * Change: BUILDR-540 Upgrade to rspec 2.1.0
19
+ * Change: BUILDR-546 Upgrade to Rubyzip 0.9.4 (Michael Guymon)
20
+ * Change: Upgrade default Scala compiler version to 2.8.1-final
21
+ * Change: Upgrade to ScalaCheck 1.8
22
+ * Change: Upgrade to Specs 1.6.6
23
+ * Fixed: BUILDR-542 Release task: SVN tagging fails if parent tag directory
24
+ does not exist yet (Gerolf Seitz)
25
+ * Fixed: BUILDR-543 POMs are installed and uploaded twice when using artifacts
26
+ with classifier
27
+ * Fixed: BUILDR-522 Send notifications when continuous compilation
28
+ succeeds/fails.
29
+ * Fixed: BUILDR-551 Continuous compilation not working for project trees
30
+ * Fixed: BUILDR-557 MD5 + SHA1 checksums are not Maven compliant (Tammo van Lessen)
31
+ * Change: Upgrade to Groovy 1.7.5
32
+ * Change: BUILDR-545 Add the ability to specify the description element in in
33
+ application.xml contained within an ear.
34
+ * Fixed: BUILDR-547 - Ensure ECJ compiler works when there is a space in the
35
+ path of dependencies.
36
+ * Fixed: BUILDR-558 Artifact uploads should show a progress bar (Tammo van Lessen)
37
+ * Fixed: BUILDR-560 show a meaning full error message when POM cannot be parsed
38
+ (Tammo van Lessen)
39
+ * Fixed: BUILDR-562 WAR package isn't updated if files under src/main/webapp
40
+ are updated
41
+ * Fixed: Scaladoc task would cause build to exit prematurely
42
+
43
+ 1.4.4 (2010-11-16)
44
+ * Change: BUILDR-549 Upgrade to RJB 1.3.3 to address "Cannot create JVM" issue with Java Update 3
45
+ on Mac OS X. Win32 platform upgraded to RJB 1.3.2.
46
+ * Change: RSpec gem dependency ~> 1.3.1
47
+ * Change: Upgrade to JtestR 0.6
48
+
49
+ 1.4.3 (2010-10-15)
50
+ * Added: BUILDR-514 New 'run' local task. http://buildr.apache.org/more_stuff.html#run
51
+ * Added: BUILDR-518 Load _buildr.rb or .buildr.rb from same directory as Buildfile
52
+ if they exist (Peter Donald)
53
+ * Added: BUILDR-519 Load repositories.release_to from build settings (Peter Donald)
54
+ * Fixed: BUILDR-520 Scaladoc 2.8 no longer support -windowtitle, use -doc-title instead.
55
+ * Fixed: BUILDR-512 Buildr::Util.ruby invokes non existent method (Peter Donald)
56
+ * Fixed: BUILDR-513 --trace fails with NoMethodError : undefined method
57
+ `include?' for nil:NilClass
58
+ * Fixed: BUILDR-515 -update-snapshot doesn't work as expected
59
+ * Fixed: BUILDR-517 package(:jar).include(directory, :as=>"foo") produces a corrupted jar
60
+ * Fixed: BUILDR-524 Optimized and more robust reading of jar MANIFEST.MF (Hugues Malphettes)
61
+ * Fixed: BUILDR-525 Documentation refers to repositories.upload_to rather than
62
+ repositories.release_to (Peter Donald)
63
+ * Fixed: BUILDR-526 Gracefully handle h2 sections with no id in documentation (Peter Donald)
64
+ * Fixed: BUILDR-527 package(:war) if libs passed are files (instead of artifacts)
65
+ * Fixed: BUILDR-528 Stop using deprecated method Gem::Dependency.version_requirements correctly (Peter Donald)
66
+ * Fixed: BUILDR-529 Stop using gem name "foo" in tests as it is the name of an actual gem (Peter Donald)
67
+ * Fixed: BUILDR-531 Improve error message when build requires gem that can't be found in local/remote
68
+ gem repositories (Peter Donald)
69
+ * Fixed: BUILDR-532 package_as_source does not package resources (Tammo van Lessen)
70
+ * Fixed: BUILDR-534 package_with_sources does not package source artifacts if no sources but resources exist.
71
+ (Tammo Van Lessen)
72
+ * Fixed: BUILDR-535 Failing "checks" produce no meaningful errors on JRuby
73
+ * Fixed: JavaRebel was previously not correctly detected.
74
+
75
+ 1.4.2 (2010-09-18)
76
+ * Added: BUILDR-415 Ability to exclude tests from command line
77
+ * Added: BUILDR-495 Document twitter on Buildr's homepage
78
+ * Added: BUILDR-212 Update support for SNAPSHOT artifacts (Timo Rantalaiho and Izzet Mustafa)
79
+ * Added: BUILDR-465 Eclipse project names should be customizable
80
+ * Added: BUILDR-493 Eclipse task should generate javadocpath
81
+ * Added: BUILDR-509 Option to generate non-prefixed Eclipse project names
82
+ * Added: BUILDR-510 Add support for trace categories: --trace=foo,bar
83
+ * Added: Integration test to show how to change the war packaging spec.
84
+ * Added: Integration test to show how to use junit 3.
85
+ * Added: Integration test to show how to get ahold of parent project
86
+ * Change: BUILDR-473 Update jruby-openssl dependency version or support a range of versions
87
+ * Change: BUILDR-478 Upgrade to net-ssh 2.0.23 and net-sftp 2.0.4 (Shane Witbeck)
88
+ * Change: BUILDR-475 Support for long names on tar.gz (updated to minitar 0.5.3)
89
+ * Change: BUILDR-484 Upgrade to Scala 2.8.0 (final) and associated dependencies
90
+ (ScalaCheck 1.7, ScalaTest 1.2, Specs 1.6.5)
91
+ * Change: BUILDR-487 package :sources should default to using .jar extension (instead of .zip)
92
+ * Change: Upgrade to Jruby 1.5.2
93
+ * Fixed: BUILDR-143 Upload to a file:// path needs ability to specify permissions (Joel Muzzerall)
94
+ * Fixed: BUILDR-144 Filter does not preserve file permissions
95
+ * Fixed: BUILDR-163 cobertura-check
96
+ * Fixed: BUILDR-203 Compiler guessing very inefficient
97
+ * Fixed: BUILDR-225 ArchiveTask#merge, not according to doc
98
+ * Fixed: BUILDR-256 Automatically installing gems aborts rspec test runner (Rhett Sutphin)
99
+ * Fixed: BUILDR-285 Cobertura failing when running build
100
+ * Fixed: BUILDR-302 Move out-of-date Nailgun documentation to wiki (Shane Witbeck)
101
+ * Fixed: BUILDR-317 ecj compiler
102
+ * Fixed: BUILDR-326 follow up: binary safe untarring on Windows (Sam Hendley)
103
+ * Fixed: BUILDR-335 follow up: excluding libraries from war is confusing
104
+ * Fixed: BUILDR-342 The jruby gem installer invokes the removed Gem.manage_gems function (Rhett Sutphin)
105
+ * Fixed: BUILDR-403 Buildr::Util::Gems.install does not find gems on remote sources
106
+ * Fixed: BUILDR-436 release task should only replace "-SNAPSHOT" (spec from Jean-Philippe Caruana)
107
+ * Fixed: BUILDR-438 Release Task: customizable version numbers (Alexis Midon)
108
+ * Fixed: BUILDR-464 Improve the versioning of Buildr (Rhett Sutphin)
109
+ * Fixed: BUILDR-466 Rendering issue with IE on the website (Shane Witbeck)
110
+ * Fixed: BUILDR-468 test:failed does not respect test.exclude
111
+ * Fixed: BUILDR-469 test:failed causes all transitive tests to run
112
+ * Fixed: BUILDR-472 ECJ dependency now required to build any java project
113
+ * Fixed: BUILDR-477 Error while parsing maven-metadata.xml
114
+ * Fixed: BUILDR-479 Enforce using a minimal version of jruby
115
+ * Fixed: BUILDR-481 Antwrap monkey-patching in core.rb
116
+ * Fixed: BUILDR-482 Javadoc : cannot load class java.com.sun.tools.javadoc.Main
117
+ * Fixed: BUILDR-488 artifact poms not reinstalled
118
+ * Fixed: BUILDR-491 sftp download goes into infinite loop
119
+ * Fixed: BUILDR-498 Artifact download fails with "negative argument" if
120
+ terminal capabilities are undefined
121
+ * Fixed: BUILDR-499 Java package caching through constants
122
+ e.g. (Java.java.lang.String cached as Java::Lang::String)
123
+ can shadow Ruby modules
124
+ * Fixed: BUILDR-501 Fix buildr label when listing tasks (Peter Donald)
125
+ * Fixed: BUILDR-503 Include with as includes directories as files when the directory has the same name as the path
126
+ * Fixed: BUILDR-506 Gem packaging does not work under windows (Peter Donald)
127
+ * Fixed: BUILDR-508 Remove unnecessary use of Java.classpath in OpenJPA
128
+ extension (Peter Donald)
129
+ * Fixed: BUILDR-507 Gem packaging should replace dashes with dots in
130
+ version number (Peter Donald)
131
+
132
+ 1.4.1 (2010-07-07)
133
+ * Added: BUILDR-420 Support external compiler
134
+ * Added: BUILDR-425 Specify dev dependencies in .gemspec
135
+ * Change: BUILDR-459 Update gemspec to accept json_pure ~> 1.4.3
136
+ * Fixed: BUILDR-455 cc_spec.rb l 160 depends on time and thus fails intermittently
137
+ * Fixed: BUILDR-461 Packages with different ids collide
138
+ * Fixed: BUILDR-439 "The command line is too long" when running TestNG tests
139
+ * Fixed: BUILDR-463 Setting a system property in the buildfile causes a NoClassDefFoundError
140
+
141
+ 1.4.0 (2010-06-18)
142
+ * Added: BUILDR-405 Enhance the idea7x extension to supply a task to delete generated files
143
+ (Peter Donald)
144
+ * Added: Support for regexps in include and exclude patterns (BUILDR-406)
145
+ * Added: Support for Scala 2.8 compiler-level change detection and dependency
146
+ tracking
147
+ * Added: Continuous compilation
148
+ * Added: Generic documentation framework (using the `doc` task). Replaces
149
+ `javadoc` task
150
+ * Added: New "test:failed" task to execute only tests that failed during last
151
+ run (Antoine Toulme)
152
+ * Added: Project extensions (before/after_define) now support dependency ordering
153
+ similar to Rake (e.g. before_define(:my_setup => :compile)
154
+ * Added: BUILDR-328 Detect Eclipse plugin project with META-INF/MANIFEST.MF
155
+ and Bundle-SymbolicName: entry
156
+ * Added: Support for Eclipse classpath variables to avoid absolute pathnames in
157
+ generated .classpath using:
158
+ eclipse.classpath_variables { :VAR => '/path/to/libraries' }
159
+ * Added: Support for excluding libraries from Eclipse classpath using:
160
+ eclipse.exclude_libs += ['/path/to/some/library.jar']
161
+ * Added: Environment variable IGNORE_BUILDFILE can be set to "yes" or
162
+ "true" to ignore changes in Buildfile when running tests.
163
+ * Added: "buildr test=only" will only run tests explicitly specified on the
164
+ command line (and ignore transitive test dependencies)
165
+ * Added: ArtifactNamespace.{keys,clear} methods
166
+ * Added: BUILDR-326 Support unzipping tar.gz files (Antoine Toulme)
167
+ * Added: BUILDR-368 Support protocol buffer code generation
168
+ (Pepijn Van Eeckhoudt)
169
+ * Added: BUILDR-375 Buildr now recognizes buildfile.rb and Buildfile.rb
170
+ (Kerry Wilson)
171
+ * Added: BUILDR-390 Buildr::group() should accept :classifier argument
172
+ * Added: BUILDR-407 Exclude and include patterns should support lambdas or procs
173
+ * Added: BUILDR-408 Filter include() and exclude() should accept Rake tasks
174
+ * Added: BUILDR-409 archive.include() should convert arguments to artifact
175
+ if applicable
176
+ * Added: BUILDR-453 Provide a ci task that uses the ci_reporter gem (Pepijn Van Eeckhoudt)
177
+ * Added: ScalaTest now generates JUnit XML reports in addition to text files.
178
+ * Change: Updated to Ant 1.8.0
179
+ * Change: Updated to Cobertura 1.9.4.1
180
+ * Change: Updated to Groovy 1.7.1
181
+ * Change: Updated to JRuby 1.5.1
182
+ * Change: Updated to JtestR 0.5
183
+ * Change: Updated to JUnit 4.7
184
+ * Change: Updated to JMock 2.5.1 (Antoine Toulme)
185
+ * Change: Updated to RJB 1.2.5
186
+ * Change: Updated to Scala Specs 1.6.2.1
187
+ * Change: Updated to ScalaCheck 1.6
188
+ * Change: Updated to ScalaTest 1.0.1
189
+ * Change: Updated to json_pure 1.4.0
190
+ * Change: Load buildr.rb from $HOME/.buildr instead of $HOME
191
+ ($HOME/buildr.rb is still loaded with deprecation warning)
192
+ * Change: BUILDR-400 Don't forbid projects to use their own compiler after one has been guessed
193
+ * Change: BUILDR-401 Don't set compiler to output warnings if verbose
194
+ * Change: Buildr.settings.build['scala.version'] now overrides SCALA_HOME to
195
+ determine which Scala libraries used for compiling. If both are
196
+ are provided and reference the same Scala version, then local
197
+ jars from SCALA_HOME are used.
198
+ * Change: Tagline changed from "The build system that doesn't suck" to "Build like you code"
199
+ * Change: BUILDR-355 Use Rake for defining tasks to do the Buildr distro over JRuby (Izzet Mustafa oglu)
200
+ * Change: BUILDR-448 Don't use sudo by default for rake setup
201
+ * Change: BUILDR-450 Update .gitignore to exclude idea project files and files generated during spec tests (Peter Donald)
202
+ * Fixed: BUILDR-208 ansi control characters are printed on Windows (Pepijn Van Eeckhoudt)
203
+ * Fixed: BUILDR-348 Buildr fails on windows with jruby and ODE 1.X
204
+ * Fixed: BUILDR-183 Can't define root artifact namespace outside of project
205
+ (Ittay Dror)
206
+ * Fixed: BUILDR-223 Release Task: customizable commit message (Alexis Midon)
207
+ * Fixed: BUILDR-232 buildr should print the class of an exception, not just
208
+ its message (Antoine Toulme)
209
+ * Fixed: BUILDR-233 Can't specify version in artifact namespace
210
+ * Fixed: BUILDR-267 Skipping tests is only done after they are compiled
211
+ (Antoine Toulme)
212
+ * Fixed: BUILDR-281 Application#initialize fails if home dir isn't writable
213
+ * Fixed: BUILDR-327 Specifying :plugin eclipse nature explicitly fails
214
+ * Fixed: BUILDR-330 Install task should re-install artifact even if they
215
+ already exist (Alexis Midon)
216
+ * Fixed: BUILDR-334 Eclipse .classpath files use absolute paths for library
217
+ entries (Stefan Wasilewski)
218
+ * Fixed: BUILDR-336 Java::Commands.java Prints Command Without --trace
219
+ (Antoine Toulme)
220
+ * Fixed: BUILDR-341 jruby -S extract is no longer supported by jruby
221
+ (Antoine Toulme)
222
+ * Fixed: BUILDR-344 Buildr::TestFramework::TestResult::YamlFormatter uses
223
+ deprecated form of example_pending (Rhett Sutphin)
224
+ * Fixed: BUILDR-345 Improve project documentation (Peter Schröder)
225
+ * Fixed: BUILDR-346 Test classpath can not be set (Peter Schröder)
226
+ * Fixed: BUILDR-347 Compile.from does not work correctly with FileTask when
227
+ no compiler is set (Peter Schröder)
228
+ * Fixed: BUILDR-349 resources.filter should use defaults from profile.yaml
229
+ even if mapping is provided
230
+ * Fixed: BUILDR-360 Reintroduce tag_name instance method for Git release task for
231
+ backward compatibility (Antoine Toulme)
232
+ * Fixed: BUILDR-361 Generate Eclipse .project file even if project has no
233
+ nature. Also prevent generation of .project if project has
234
+ children. (Antoine Toulme)
235
+ * Fixed: BUILDR-364 Package spec should be set to a Symbol when :file is
236
+ used (Klaas Prause)
237
+ * Fixed: BUILDR-365 test task should use test compile dependencies
238
+ * Fixed: BUILDR-366 Scala dependencies should be lazily loaded into
239
+ Java.classpath
240
+ * Fixed: BUILDR-373 Package type specific implementations of install,
241
+ uninstall and upload are not invoked (Antoine Toulme)
242
+ * Fixed: BUILDR-374 upload tasks can attempt to upload artifacts multiple times (Pepijn Van Eeckhoudt)
243
+ * Fixed: BUILDR-379 Ant sql task abruptly terminates buildr
244
+ * Fixed: BUILDR-380 GitRelease: recursive search for root '/' does not work
245
+ under Windows (Antoine Toulme)
246
+ * Fixed: BUILDR-381 JUnit tests on Groovy project fail with
247
+ NoClassDefFoundError: junit/framework/TestCase
248
+ * Fixed: BUILDR-382 Packages with default spec are not always created correctly
249
+ * Fixed: BUILDR-383 artifact().from(task_dependency) should not trigger
250
+ task_dependency if artifact exists
251
+ * Fixed: BUILDR-384 Buildr fails with rubygems 1.3.6
252
+ * Fixed: BUILDR-386 Display JRuby version in buildr -V (Antoine Toulme)
253
+ * Fixed: BUILDR-388 Continuous Compilation Support for Sub-Projects
254
+ * Fixed: BUILDR-391 resources task does not detect changes
255
+ * Fixed: BUILDR-392 Array values not flattened in (one version) of eclipse
256
+ task properties (Antoine Toulme, Peter Dettman)
257
+ * Fixed: BUILDR-306 Cobertura extension does not handle dependencies
258
+ correctly (Pepijn Van Eeckhoudt)
259
+ * Fixed: BUILDR-398 FileUtils#sh does not work correctly on Windows
260
+ (Pepijn Van Eeckhoudt)
261
+ * Fixed: BUILDR-399 invoke_with_call_chain does not restore call chain
262
+ correctly (Pepijn Van Eeckhoudt)
263
+ * Fixed: BUILDR-418 jruby exception: `ffi_libraries': no library specified
264
+ * Fixed: BUILDR-442 Errors while running the specs with jruby 1.5
265
+ * Fixed: BUILDR-449 Fix failing specs on Windows (Pepijn Van Eeckhoudt)
266
+ * Fixed: buildr test=all didn't run all tests as expected
267
+ * Fixed: Fail-fast if package.with() or include() called with nil values
268
+ * Fixed: Failures not reported correctly for ScalaTest (Alex Eagle)
269
+ * Fixed: Test dependencies should include test compile dependencies
270
+ * Fixed: Classpath correctly passed to Scala shell
271
+ * Fixed: Removed redundant tracing of command arguments
272
+ * Fixed: filter.using(hash) now correctly substitutes mappings with boolean
273
+ "false" value
274
+ * Fixed: BUILDR-404 buildr -V causes exception on JRuby
275
+ * Fixed: BUILDR-411 fix for RDoc generation
276
+ * Fixed: BUILDR-417 package_as_javadoc calls deprecated method
277
+ (Pepijn Van Eeckhoudt)
278
+ * Fixed: BUILDR-412 Gemspec dependencies don't add up - to the point it's not possible to release
279
+ * Fixed: BUILDR-414 Provide tag_name method on GitRelease as part of API
280
+ * Fixed: BUILDR-419 Exclusion patterns only work if they contain a wildcard
281
+ * Fixed: BUILDR-421 The MANIFEST.MF file packaged by Buildr as permissions set to 600
282
+ * Fixed: BUILDR-423 MANIFEST.MF files are not closed, leading to open files leak.
283
+ * Fixed: BUILDR-447 Path object do not include empty dirs in base directory (Peter Donald)
284
+ * Fixed: BUILDR-457 package(:jar) adds . entry to the jar
285
+
286
+ 1.3.5 (2009-10-05)
287
+ * Added: Interactive shell (REPL) support
288
+ * Added: BeanShell as default shell for java projects, bsh is small and it's
289
+ syntax provides the closest to an interpreted java. The BeanShell
290
+ console includes a graphical class browser. Shell is named :bsh
291
+ * Added: Mandriva (urpmi) installation support (with help from Franck Villaume).
292
+ * Added: BUILDR-56 Download Scala artifacts if not available locally
293
+ * Added: BUILDR-163 cobertura:check (Marko Sibakov, Daniel Spiewak).
294
+ * Added: BUILDR-295 Eclipse task: make 'M2_REPO' repository variable configurable
295
+ * Added: BUILDR-300 Make Eclipse task more configurable (Antoine Toulme, Alex Boisvert)
296
+ * Change: Upgraded to rubyforge-1.0.5 and net-ssh 2.0.15
297
+ * Change: Monkey-Patched FileUtils::sh on JRuby to use POSIX `system`
298
+ * Change: Updated to Rake 0.8.7, RSpec 1.2.8 and JRuby-openssl 0.5.2.
299
+ * Change: Updated to easyb 0.9 (Joel Muzzerall)
300
+ * Change: Updated to TestNG 5.10
301
+ * Change: Updated to JRuby 1.3.1
302
+ * Fixed: BUILDR-23 Support for setting file mode when packaging (Ittay Dror).
303
+ * Fixed: BUILDR-278 tasks/*.rake files are loaded after the buildfile (Rhett Sutphin)
304
+ * Fixed: BUILDR-282 release goal should not strip leading '0' digits from version numbers.
305
+ * Fixed: BUILDR-289 Improved error message when JAVA_HOME points to an invalid JRE/JDK installation
306
+ * Fixed: BUILDR-290 Dependencies cannot be downloaded over SSL.
307
+ * Fixed: BUILDR-291 Local tasks do not support arguments (Ittay Dror).
308
+ * Fixed: BUILDR-292 Workaround for JRUBY-3381 on FileUtils.mv
309
+ * Fixed: BUILDR-301 TestNG doesn't report failure if more than one test fails
310
+ * Fixed: BUILDR-307 Failures are not reported correctly for ScalaTest (Jeremie Lenfant-Engelmann)
311
+ * Fixed: BUILDR-313 Prevent release with uncommitted_files on Git 1.4.3+ (Alexis Midon)
312
+ * Fixed: BUILDR-315 Fix Eclipse .classpath for local libraries (Mat Schaffer)
313
+ * Fixed: BUILDR-304 Referencing an existing package task using the package
314
+ method fails if the package has a custom filename (Rhett Sutphin)
315
+ * Fixed: BUILDR-322 When specifying files (instead of directories) as sources for compile task,
316
+ Buildr uses target directory timestamp only (not compiled output timestamp)
317
+ * Fixed: BUILDR-324: Regression - baseDir system property is not set when executing tests [Alexis Midon]
318
+ * Fixed: BUILDR-325: Overriding package spec with classifer doesn't work (Antoine Toulme)
319
+
320
+ 1.3.4 (2009-04-21)
321
+ * Added: BUILDR-93 Add specs for ScalaCheck integration
322
+ * Added: BUILDR-94 Add specs for Scala Specs integration
323
+ * Added: BUILDR-136 Support Scala/Java Joint Compiler (Daniel Spiewak).
324
+ * Added: BUILDR-159 Improved 'check' to accept both tar and tgz archives.
325
+ * Added: BUILDR-164 New 'artifacts:sources' task to download source code
326
+ for artifact jars.
327
+ * Added: BUILDR-222 Support Git as a version control system
328
+ * Added BUILDR-223 Release Task: customizable commit message
329
+ * Added: BUILDR-242 Include Scala-Tools Repository by Default.
330
+ * Added: BUILDR-268 Allow proxying for https connections (Joel Muzzerall).
331
+ * Added: Info message "Packaging filename.ext" now displayed for packaging tasks
332
+ * Added: Added Scala.version and Scala.version_str
333
+ * Change: require 'buildr/scala' is now officially required to use Scala features
334
+ * Change: Introduced new options from Rake 0.8.3: -I (libdir), -R (rakelib),
335
+ --rules, --no-search, --silent.
336
+ * Change: Upgraded to Rubyforge 1.0.1.
337
+ * Change: Upgraded to use Rake 0.8.4.
338
+ * Change: Upgraded to use Net-SSH 2.0.11.
339
+ * Change: Upgraded to use RSpec 1.2.2.
340
+ * Change: Upgraded to use JRuby 1.1.6 (when auto-installing).
341
+ * Change: Buildr, no longer in incubation (hurray!): new site, mailing list, SVN, Git.
342
+ * Change: BUILDR-171 Eclipse task generates meta-data files for projects with
343
+ test source code but no main source code.
344
+ * Change: BUILDR-177 Moved cobertura and emma extensions to lib directory.
345
+ * Change: BUILDR-187 Source code attachment for Eclipse .classpath.
346
+ * Change: BUILDR-188 Source code attachment for IDEA .iml file (Marko Sibakov).
347
+ * Change: BUILDR-209 Scala Specs Should Use src/specs/scala/
348
+ * Change: BUILDR-237 Use MacPorts Scala on OS X.
349
+ * Change: BUILDR-260 Upgrade to Scala 2.7.3 compatible dependencies:
350
+ ScalaSpecs 1.4.3, ScalaCheck 1.5 and ScalaTest 0.9.5
351
+ * Change: Buildr now uses Jekyll to generate Web site/documentation:
352
+ http://github.com/mojombo/jekyll/ This replaces Docter so less code to
353
+ maintain and the same Textile/Liquid mechanism as when using Github pages.
354
+ * Change: To access Release object (e.g. to set tag_name) use Release.find.
355
+ * Fixed: Removed double complete/fail messages showing up on console.
356
+ * Fixed: BUILDR-140 Get rid of const_defined? all across the board.
357
+ * Fixed: BUILDR-158 Nailgun is now a delegate for buildr/drb (a pure-ruby dRuby server)
358
+ * Fixed: BUILDR-170 ArtifactNamespace#method_missing has a condition that is never true.
359
+ * Fixed: BUILDR-172 Scala compiler not loaded by default.
360
+ * Fixed: BUILDR-175 Fail to find child project when calling project method inside project definition.
361
+ * Fixed: BUILDR-185 Exception if using artifact names with hyphen (Joel
362
+ Muzzerall).
363
+ * Fixed: BUILDR-192 TestNG report results are overwritten (Alexis Midon).
364
+ * Fixed: BUILDR-193 TestNG uses project name for suite name (not valid file
365
+ name on Windows).
366
+ * Fixed: BUILDR-194 Buildr always adds 'Manifest-Version' to generated manifest file.
367
+ * Fixed: BUILDR-198 Filter#run always calls mkpath with :verbose.
368
+ * Fixed: BUILDR-199 ArchiveTask#needed uses 'each' with no effect (Ittay Dror).
369
+ * Fixed: BUILDR-201 Sample project is not valid (Alexis Midon).
370
+ * Fixed: BUILDR-214 Buildr is stuck uploading to sftp repository (Heikki Hulkko).
371
+ * Fixed: BUILDR-216 Profiles documentation is wrong (Shane Witbeck).
372
+ * Fixed: BUILDR-218 Manifest.from_zip fails if the zip doesn't already have
373
+ META-INF/MANIFEST.MF (Joel Muzzerall).
374
+ * Fixed: BUILDR-226 Release task should use XML output of "svn info" instead
375
+ of human-readable output (Alexis Midon).
376
+ * Fixed: BUILDR-230 release task fails if there's a space in the path to the
377
+ Buildfile.
378
+ * Fixed: BUILDR-235 JRuby download link is broke (Alexis Midon).
379
+ * Fixed: BUILDR-239 HTTP redirects lose authentication information (Joel
380
+ Muzzerall).
381
+ * Fixed: BUILDR-240 Make TestNG print traces in the console (Alex Midon).
382
+ * Fixed: BUILDR-241 IDEA7X IPR generation does not pay attention to base_dir
383
+ for submodules (Rhett Sutphin).
384
+ * Fixed: BUILDR-247 OpenObject does not work with Hash#only (Rhett Sutphin).
385
+ * Fixed: BUILDR-253 ZipTask now uses Zlib::DEFAULT_COMPRESSION instead of NO_COMPRESSION
386
+ * Fixed: BUILDR-255 tasks/*.rake files are loaded more than once.
387
+ * Fixed: BUILDR-261 ScalaSpecs should be run with Scala dependencies
388
+ * Fixed: BUILDR-263 package(:war).merge not working correctly with exclude()
389
+ * Fixed: BUILDR-271 Using buildr --environment leads to "Don't know how to
390
+ build task XXX".
391
+ * Fixed: BUILDR-269 rspec bdd is broken (Jeff Hodges)
392
+ * Fixed: BUILDR-272 'rake gem' does not build gem under JRuby (Clinton R.
393
+ Nixon).
394
+ * Remove: BUILDR-215 buildr:freeze and unfreeze tasks don't work since we're
395
+ no longer running with the rake command.
396
+
397
+ 1.3.3 (2008-10-08)
398
+ * Added: JtestR support. Implemented pending jtestr specs.
399
+ * Added: Growl notifications (OS X only).
400
+ * Added: error, info and trace methods.
401
+ * Added: Release task support for alternative SVN repository layout
402
+ (e.g., http://my.repo.org/trunk/foo).
403
+ * Added: BUILDR-128 Emma support
404
+ * Added: BUILDR-135. Extracted reusable replacement logic into Filter::Mapper
405
+ * Added: BUILDR-148 It is now possible to set the version of various 3rd
406
+ party libraries from the build.yml file. Supported libraries
407
+ include Ant and the various test and BDD frameworks.
408
+ * Change: Error reporting now shows 'buildr aborted!' (used to say rake),
409
+ more of the stack trace without running --trace, and when running
410
+ with supported terminal, error message is red.
411
+ * Change: Eclipse task updated to documented Scala plugin requirements
412
+ (http://www.scala-lang.org/node/94)
413
+ * Change: Buildr.application.buildfile returns a task instead of a String.
414
+ * Change: BUILDR-104 Buildr::group has :under and :version, but not :type.
415
+ Now it has :type too (Lacton).
416
+ * Change: BUILDR-139 Incremental test run.
417
+ * Change: BUILDR-141 Removed NEXT_VERSION from release task.
418
+ * Change: BUILDR-148 ant-junit no longer included in root classpath, but
419
+ specified during taskdef.
420
+ * Change: BUILDR-153 To customize the SVN tag used by the release task, set
421
+ Release.tag_name to either the tag value or a proc that takes the
422
+ version number and return the desired tag.
423
+ * Fixed: Should not display "(in `pwd`, development)" when using --quiet.
424
+ * Fixed: Release task's regexp to find either THIS_VERSION and VERSION_NUMBER.
425
+ * Fixed: BUILDR-106 download(artifact(...)=>url) broken in certain cases
426
+ (Lacton).
427
+ * Fixed: BUILDR-108 Trace to explain why a compile is done (Lacton).
428
+ * Fixed: BUILDR-109 Failure of "Buildr::Filter should respond to :include and
429
+ use these inclusion patterns" (Lacton).
430
+ * Fixed: BUILDR-110 Error creating buildfile from POM when missing plugin
431
+ configuration (Geoffrey Ruscoe).
432
+ * Fixed: BUILDR-112 Using a user gem repository with 'rake setup' (Lacton).
433
+ * Fixed: BUILDR-114 Hash.from_java_properties does not behave
434
+ like java.util.Properties (Lacton).
435
+ * Fixed: BUILDR-116: TestTask should include the main compile target in its
436
+ dependencies, even when using non standard directories (Lacton).
437
+ * Fixed: BUILDR-117 Shared directory for both code and resources produces
438
+ duplicate Eclipse classpath entries (Nathan Hamblen)
439
+ * Fixed: BUILDR-119 Eclipse task does not accept test resource folders
440
+ (Lacton)
441
+ * Fixed: BUILDR-122: eclipse task should not check for directory existence
442
+ * Fixed: BUILDR-123: eclipse task should honor ResourceTask's target directory
443
+ * Fixed: BUILDR-124 unzip(...).from_path does not work correctly without
444
+ include (Rhett Sutphin).
445
+ * Fixed: BUILDR-126 Tests options are shared between unrelated projects when
446
+ using #options instead of #using (Lacton).
447
+ * Fixed: BUILDR-129. Modifying a project manifest should not alter it's
448
+ parent project manifest.
449
+ * Fixed: BUILDR-137 JRuby 1.1.3 and Buildr 1.3.2 don't appear to work
450
+ (on Windows).
451
+ * Fixed: BUILDR-138 ScalaTest premature use of Buildr::Repositories
452
+ inconsistent with customizing locations.
453
+ * Fixed: BUILDR-152 Project.task fails when task name starts with a colon.
454
+ * Fixed: BUILDR-157 Tasks library not loaded from a submodule.
455
+ * Docs: BUILDR-111 Troubleshoot tip when Buildr's bin directory shows up in
456
+ RUBYLIB (Geoffrey Ruscoe).
457
+
458
+ 1.3.2 (2008-07-18)
459
+ * Added: --prereqs command line argument to show all tasks and their
460
+ dependencies. You can also follow with regular expression to narrow down the
461
+ list of tasks.
462
+ * Changed: Upgraded to Rubyforge 1.0.0.
463
+ * Changed: BUILDR-86 Use newest versions of net-ssh and net-sftp gems.
464
+ * Changed: BUILDR-88 Test classes/resources should come before compile
465
+ classes/resources so they load up earlier in java classpath.
466
+ * Changed: BUILDR-102 Update JUnit Version to 4.4.
467
+ * Fixed: BUILDR-73 idea7x task incorrect adds target/resources to the sources
468
+ paths.
469
+ * Fixed: BUILDR-76 Added more specs and fixes to compile task.
470
+ * Fixed: BUILDR-77 Layout feature not working.
471
+ * Fixed: BUILDR-79 Remove :source option for Scala compiler
472
+ * Fixed: BUILDR-80 Fix reference to Util#timestamp method on nailgun addon.
473
+ * Fixed: BUILDR-82 Temporary work around for Net::SSH 2.0.2 attempting to
474
+ load Pageant DLLs when running on JRuby/Windows.
475
+ * Fixed: BUILDR-89 JUnit (and all other Java frameworks) no longer include
476
+ abstract classes.
477
+ * Fixed: BUILDR-90 Installing from source doesn't work with JRuby.
478
+ * Fixed: BUILDR-91 When doing a release, buildr should spawn the same version
479
+ of buildr
480
+ * Fixed: BUILDR-92 IDEA 7x: add resources directories to classpath.
481
+ * Fixed: BUILDR-95: Only download Scala test framework artifacts when required
482
+ * Fixed: BUILDR-100 Directory structure documentation needs updating.
483
+ * Fixed: Installation instructions updated for RubyGems 1.2.0.
484
+
485
+ 1.3.1.1 (2008-06-04)
486
+ * Fixed: BUILDR-78 Broken dependency on Rubyforge Gem.
487
+
488
+ 1.3.1 (2008-05-19)
489
+ * Added: Downloading files from SFTP server, uploading to HTTP.
490
+ * Added: jibx_bind method to use JiBX for Java<=>XML binding (by David
491
+ Peterson).
492
+ * Changed: Upgraded to Net::SSH 2.0 and Net::SFTP 2.0.
493
+ * Fixed: BUILDR-67 HTTP GET now works with query parameters (Tommy Knowlton).
494
+ * Fixed: BUILDR-68 Now accepting JAVA_HOME setting on OS X (Nathan Hamblen).
495
+ * Fixed: JUnit now accepts java_args and passes these arguments to the JVM
496
+ (only applicable when forking).
497
+ * Fixed: BUILDR-70 JUnit not passing environment variables from the
498
+ :environment option.
499
+ * Fixed: BUILDR-75 Filter now runs if there's a target directory, even if
500
+ there are no source files to copy over, since everyone else just checks
501
+ resources.target for existence before depending on it.
502
+ * Fixed: BUILDR-63 Possible fix.
503
+
504
+ 1.3.0 (2008-04-25)
505
+ * Added: Testing with EasyB (Nicolas Modrzyk).
506
+ * Added: Testing with JBehave (John Layton).
507
+ * Added: Testing with RSpec (Nick Sieger).
508
+ * Added: Nailgun integration for improved user experience when running on
509
+ JRuby.
510
+ * Added: Cobertura tasks can be invoked for a single project using project
511
+ name as prefix to cobetura tasks.
512
+ * Added: Cobertura can exclude specified classes from instrumentation.
513
+ * Added: ArchiveTask#clean can be used to remove content from a package.
514
+ * Added: Groovy compiler.
515
+ * Added: Mechanism to simplify creating extensions (see Extension module).
516
+ * Added: To run all test cases 'rake spec'. Test coverage reports will show
517
+ up in html/coverage. To run failing tests against, 'rake failing'.
518
+ * Added: Layout class for controlling the project layout. Also cleaned up
519
+ places where paths were used instead of path names.
520
+ * Added: HTTP Basic authentication support (Yuen-Chi Lian).
521
+ * Added: EAR packaging (Victor Hugo Borja).
522
+ * Added: Profiles(.yaml), based on the code provided by Yanko Ivanov.
523
+ * Added: Resources task picks the default mapping from the filter element of
524
+ the current profile (if specified).
525
+ * Added: Consolidated API for RJB and JRuby, replacing the now deprecated
526
+ JavaWrapper.
527
+ * Added: JRuby 1.1 support (Victor Hugo Borja, Nick Sieger).
528
+ * Added: IDEA 7 task: use buildr idea7x (Shane Witbeck).
529
+ * Added: Experimental support for installing/loading Gems as part of a build.
530
+ * Added: Experimental support for YAML configurtion files:
531
+ ~/.buildr/settings.yaml, build.yaml and profiles.yaml.
532
+ * Added: Ability to create a package that is not an artifact and specify the
533
+ target file using the :file argument.
534
+ * Changed: JUnit/TestNG test cases are selected by superClass or annotations,
535
+ not by class-name pattern.
536
+ * Changed: Upgraded to Antwrap 0.7.0, thanks to Caleb Powell for relicensing
537
+ under Apache License.
538
+ * Changed: Upgraded to Rake 0.8, RSpec 1.1, RJB 1.1, OpenJPA 1.0.1.
539
+ * Changed: Resources are now copied to target/resources instead of
540
+ target/classes, and target/test/resources instead of target/test-resources.
541
+ * Changed: Test cases are now compiled into target/test/classes instead of
542
+ target/test-classes.
543
+ * Changed: Compile extension and CompileTask are now separate from the Java
544
+ module. Multiple compilers can be used, either guessed from the project
545
+ layout, or specified with compile.using(:name).
546
+ * Changed: Test extension and TestTask are now separate from the Java module.
547
+ JUnit and TestNG are Java specific extensions picked using test.with(:name).
548
+ * Changed: For compile and test, use dependencies instead of classpath (with
549
+ works are before).
550
+ * Changed: Test framework componentized along the same lines as the
551
+ compilers.
552
+ * Changed: The way packaging is handled: package_as_[type] is now called once
553
+ for a given package with the exact file name. If packaging requires a change
554
+ to the specifiction (e.g. a different file type than the package type), add a
555
+ package_as_[type]_spec method.
556
+ * Changed: The default packaging type is inferred from the compiler, and
557
+ without a compiler, defaults to :zip.
558
+ * Changed: JUnit test framework now runs on all classes that extend
559
+ junit.framework.TestCase.
560
+ * Changed: Scalac compiler now used by the regular compile task, the scalac
561
+ task is deprecated.
562
+ * Changed: RDoc are now generated using Allison
563
+ (http://blog.evanweaver.com/files/doc/fauna/allison).
564
+ * Changed: Resource tasks no longer generate target directory if there are no
565
+ resources to copy over.
566
+ * Changed: To prevent collissions with required files, the source layout now
567
+ places everything under lib/buildr, so require 'core/compile' is now require
568
+ 'buildr/core/compile'.
569
+ * Changed: The various Java tasks (JavaCC, XMLBeans, JDepends, etc) are now
570
+ located in the extra directory, and may at some point relocate to an addon
571
+ Gem.
572
+ * Removed: Prepare tasks removed.
573
+ * Removed: All deprecated features since 1.1. If you've seen warnings before,
574
+ except the build to break.
575
+ * Removed: No longer using Facets or recommending you use it in buildfiles.
576
+ * Fixed: More typos/documentation fixes by Lacton
577
+ * Fixed: Artifact.pom resolves artifact without classifier, i.e
578
+ org.testng:testng:jar:jdk15:5.1 uses org.testng:testng:pom:5.1 (Tommy).
579
+ * Fixed: More patches towards JRuby support, courtesy of Vic Borja.
580
+ * Fixed: Error when downloading a file from a server which answers with a
581
+ response with no content length.
582
+ * Fixed: Improved the Eclipse task (BUILDR-17): removed resources target
583
+ directory from the source directories, made the main resource directories
584
+ relative to the project directory and reordered project elements (Thomas
585
+ Marek).
586
+ * Fixed: When compiling Scala only include scala-library and scala-compiler
587
+ JARs (John Layton).
588
+ * Fixed: POM generation now applies JAR as default packaging if unspecified
589
+ (Maarten Billemont).
590
+
591
+ 1.2.10 (2007-11-26)
592
+ * Changed: Resources sets permission on copied files to make them
593
+ read/write-able (Shane Witbeck).
594
+ * Changed: Artifact download no longer generates destination directory if not
595
+ downloaded (Antoine).
596
+ * Fixed: EOL in MANIFEST.MF.
597
+ * Fixed: Bunch of typos, courtesy of Merlyn Albery-Speyer and Soemirno
598
+ Kartosoewito.
599
+
600
+ 1.2.9 (2007-11-08)
601
+ * Changed: Upgraded to RJB 1.0.11.
602
+ * Fixed: Backward compatibility in Java.rjb/wrapper.
603
+
604
+ 1.2.8 (2007-11-01)
605
+ * Added: Resolving Maven snapshots from remote repository (Rhett Sutphin)
606
+ * Changed: scala options.target now takes number, e.g. "1.5" instead of
607
+ "jvm-1.5" (Nathan Hamblen)
608
+ * Changed: Eclipse task uses updated Scala plugin nature and builder (Alex
609
+ Boisvert)
610
+ * Fixed: Bringing Buildr back to 1.0.9, XMLBeans fix.
611
+
612
+ 1.2.7 (2007-10-29)
613
+ * Added: You can create an artifact from a given file using
614
+ artifact(<spec>).from(<path>). You can then install it into the local
615
+ repository or upload it to the release server using install(<artifacts>) and
616
+ upload(<artifacts>). (Idea: Shane Witbeck and Tommy Mason).
617
+ * Added: ANTLR support.
618
+ * Changed: Speed boost to ZIP packaging.
619
+ * Changed: RjbWrapper is now JavaWrapper, and revised to nicely support JRuby.
620
+ A few other minor tweaks to make JRuby support possible in the future. (Travis
621
+ Tilley)
622
+ * Changed: JUnit now runs tests with clonevm false by default, you can change
623
+ with test.using :clonevm=>true (Karel)
624
+ * Changed: JUnit now switches over to project's base directory.
625
+ * Changed: package(:war).with(:libs, :classes) uses only these specified libs
626
+ and class directories, replacing any previous value.
627
+ * Fixed: Jetty task no longer sets "log4j.configuration" system property
628
+ * Fixed: release task didn't work
629
+
630
+ 1.2.6 (2007-09-26)
631
+ * Added: Option for setting environment name (-e) and attribute accessor
632
+ (Buildr.environment). Default taken from BUILDR_ENV environment variable.
633
+ * Added: AAR packaging for Axis2 service archives (Alex Boisvert)
634
+ * Added: Environment variable for JUnit tests (test.using :environment=>).
635
+ * Added: tar method similar to zip method.
636
+ * Added: Experimental transitive method. Looks like artifacts, quacks like
637
+ artifacts, but returns artifacts by the boat load. (Credit, Daniel Roop)
638
+ * Changed: Now accepting JAVA_OPTS in addition to JAVA_OPTIONS.
639
+ * Changed: TarTask is now based on ArchiveTask, same API as ZipTask.
640
+ * Changed: Javadoc array arguments now passed as multiple command line options
641
+ (e.g. :link=>['foo', 'bar'] becomes --link foo --link bar). (Daniel Roop)
642
+ * Changed: Jetty task now uses SLF4J instead of commons-logging + log4j for
643
+ better hot-swap capability and plugability (Alex Boisvert)
644
+ * Removed: Turns out --verbose command line option is useless. Removed.
645
+ * Fixed: Jetty task now uses WebAppContextClassLoader to support hot-swapping
646
+ webapps (Alex Boisvert)
647
+ * Fixed: "release" task now works with SVN URLs ending with /branches/*/ (Alex
648
+ Boisvert)
649
+ * Fixed: Resources not included in JAR/WAR unless there's a src/main/java
650
+ directory (Olexandr Zakordonskyy).
651
+ * Fixed: Files starting with dot (e.g. .config) not copied over as resource
652
+ files, and not included in ZIP (Olexandr Zakordonskyy).
653
+ * Fixed: Empty directories not copied over as resources (Olexandr
654
+ Zakordonskyy).
655
+ * Fixed: JAVA_OPTS and test.options[:java_args] not passed to JUnit task
656
+ (Staube).
657
+ * Fixed: archive.exclude doesn't work when including a directory using
658
+ :from/:as option.
659
+ * Fixed: JUnit/TestNG no longer run inner classes as test classes (Mark
660
+ Feeney).
661
+
662
+ 1.2.5 (2007-08-13)
663
+ * Fixed: Buildr not finding buildfile in parent directory, or switching to
664
+ parent directory.
665
+ * Fixed: checks.rb:103: warning: multiple values for a block parameter (2 for
666
+ 1)
667
+ * Fixed: ZIPs include empty META-INF directory.
668
+
669
+ 1.2.4 (2007-08-03)
670
+ * Added: Forking option for JUnit test framework: :once to fork for each
671
+ project, :each to fork for each test case, and false to not fork. (Tammo van
672
+ Lessen)
673
+ * Added: Path traversal in Zip, so zip.path("foo/bar").path("..") returns
674
+ zip.path("foo").
675
+ * Fixed: JUnit test framework output shows errors in console, more readable
676
+ when forking is on (Tammo van Lessen).
677
+ * Fixed: Cobertura reports not working (Anatol Pomozov).
678
+ * Fixed: Zip creates funky directory name when using :as (Tommy Mason).
679
+ * Fixed: package_as_tar incorrectly calling with(options) (Tommy Mason).
680
+ * Fixed: Loading of everything which should get rid of "already initialized
681
+ constant VERSION" warning.
682
+ * Fixed: --requires option now works properly when using buildr.
683
+ * Fixed: MANIFEST.MF lines must not be longer than 72 characters (Tommy
684
+ Mason).
685
+ * Fixed: Creating manifest from array does not place Name first.
686
+ * Fixed: Complain if no remote repositories defined, add at least one
687
+ repository when creating from POM, POM reader fails if dependencyManagement
688
+ missing (Jean-Baptiste Quenot).
689
+ * Fixed: Not looking for buildfile in parent directory.
690
+ * Fixed: Project's compile/test task looking for options in local task of same
691
+ name.
692
+ * Fixed: ZIP/JAR/WAR include directory entries in some cases and not others.
693
+ * Fixed: Computation of relative paths in Eclipse project generation (Cameron
694
+ Pope)
695
+
696
+ 1.2.3 (2007-07-26)
697
+ * Added: Get your buildfile created form existing POM, just run buildr on
698
+ existing Maven project (Anatol Pomozov).
699
+ * Added: package(:tar), package(:tgz), TarballTask dn TarTask (Tommy
700
+ Knowlton).
701
+ * Changed: The ArchiveTask needs no introduction: it's a base task that
702
+ provides common functionality for ZipTask, TarTask and friends.
703
+ * Fixed: Release runs buildr instead of buildr.cmd on Windows (Chris Power).
704
+ * Fixed: Cobertura reports broken (Anatol Pomozov).
705
+
706
+ 1.2.2 (2007-07-18)
707
+ * Added: resources.using and filter.using now accepts a format as the first
708
+ argument, default being :maven, but you can also use :ant, :ruby or pass a
709
+ regular expression
710
+ (http://groups.google.com/group/buildr-talk/browse_thread/thread/5216d5ae8bfff29b).
711
+ * Fixed: Sleek upload with changelog for each release courtesy of Anatol
712
+ Pomozov.
713
+ * Fixed: Zip.path.contains fails on paths with more than one directory
714
+ (http://groups.google.com/group/buildr-talk/browse_thread/thread/5d305bbeeb814d1).
715
+ * Fixed: Speed of sorting entries when creating new Zip file
716
+ (http://groups.google.com/group/buildr-talk/browse_thread/thread/8b4d1b0e983f32f).
717
+ * Fixed: Uploading using SFTP creates directory for uploaded file
718
+ (http://groups.google.com/group/buildr-talk/browse_thread/thread/80021d35cecfecdc).
719
+
720
+ 1.2.1 (2007-07-12)
721
+ * Added: Proxy exclusion, use environment variable NO_PROXY, or
722
+ options.proxy.exclude = <url> || [<url>]
723
+ (http://groups.google.com/group/buildr-talk/t/9f1e988e0dbeea9f).
724
+ * Added: You can now copy resources from multiple source directories, using
725
+ resources.from
726
+ (http://groups.google.com/group/buildr-talk/browse_thread/thread/4f2867a6dbbc19d4).
727
+ * Added: Hash.from_java_properties(string) and hash.to_java_properties.
728
+ * Changed: Buildr.options now wrap various environment variables instead of
729
+ duplicating them (HTTP_PROXY, NO_PROXY, TEST, DEBUG).
730
+ * Changed: No longer passing proxies to transports, instead they obtain them
731
+ from environment variables.
732
+ * Changed: Buildr now uses XJavaDoc 1.1 instead of 1.1-j5. If you need the
733
+ 1.1-j5 fix, see here
734
+ http://groups.google.com/group/buildr-talk/browse_thread/thread/49f3226810466c94/1f0d25d002433fe2.
735
+ * Fixed: One RubyForge release for all packages, instead of one per package
736
+ (Anatol Pomozov).
737
+ * Fixed: buildr command does not recognize project tasks (foo:compile) or
738
+ default task (http://groups.google.com/group/buildr-talk/t/660061a0bc81989a).
739
+ * Fixed: Upload fails on SFTP permissions.
740
+ * Fixed: Hibernate.schema_export not passing Ant task when yielding.
741
+ * Fixed: IntelliJ Idea project files generation for projects more than two
742
+ degrees deep.
743
+
744
+ 1.2.0 (2007-06-06)
745
+ * Added: Artifact.list returns specs for all registered artifacts (those
746
+ created with artifact or package).
747
+ * Added: Buildr.option.java_args are used when creating the RJB JVM, when
748
+ running a Java process (unless you override directly), and when running JUnit
749
+ tests (again, unless override).
750
+ * Added: TestNG support (test.using :testng).
751
+ * Added: You can run multiple tests from the command line, e.g. rake
752
+ test:foo,bar.
753
+ * Added: If you want to distribute source code and JavaDoc alongside your JARs
754
+ (helpful when using IDE/debugging), you can now do so by calling
755
+ package_with_sources and package_with_javadoc on the project (or the parent
756
+ project to affect all its sub-projects).
757
+ * Added: junit:report task generates XML and HTML reports in the reports/junit
758
+ directory.
759
+ * Added: test=all option runs all test cases ignoring failure.
760
+ * Added: project generation for IntelliJ Idea. Imports dependencies properly
761
+ from your local repository (the M2_REPO path variable must be defined),
762
+ supports tests and resources.
763
+ * Added: A check task for each project that runs after packaging and can be
764
+ used to check the build itself, using RSpec matchers.
765
+ * Added: The help task can be used to get basic information about your build.
766
+ Right now it returns a list of described tasks, but you can extend it using
767
+ the help method. Try it out: rake help.
768
+ * Added: Integration tests that run after packaging (unless tests are
769
+ disabled). There's only one integration tests task (duh) that you can access
770
+ from anywhere. You can tell a project to run its tests during the integration
771
+ phase with test.using :integration.
772
+ * Added: package :sources and package :javadoc, used by package_with_sources
773
+ and package_with_javadoc.
774
+ * Added: Unzip paths now return root/target. (Nathan)
775
+ * Added: buildr command line, replacing rake. Differs from rake in two ways:
776
+ uses buildfile by default (but Rakefile also works) and offers to create
777
+ buildfile if you don't already have one.
778
+ * Added: options.proxy.http now set from the environment variable HTTP_PROXY
779
+ (Anatol Pomozov).
780
+ * Added: options.java_args now set from environment variable JAVA_OPTIONS.
781
+ * Changed: Filter now complains if source directory or target directory not
782
+ set, or if source directory does not exist.
783
+ * Changed: Filter.run returns true if filter run, false otherwise, and can be
784
+ run multiple times.
785
+ * Changed: repositories.proxy returns a URI or nil; you can still set a proxy
786
+ using a hash.
787
+ * Changed: Transports went the way of the Dodo, instead we now use
788
+ read/write/download/upload methods implemented on URI itself.
789
+ * Changed: We now have a way to configure multiple proxies through the
790
+ options.proxy method; use that instead of repositories.proxies.
791
+ * Changed: Upgraded to Ant 1.7.0, JUnit 4.3, JMock 1.2.
792
+ * Changed: TestTask now provides list of test classes and failed classes
793
+ through test_classes and failed_tests attributes.
794
+ * Changed: The jetty method is now available everywhere, so you can change the
795
+ URL using jetty.url = at the top of the Rakefile. Also upgraded to 6.1.3.
796
+ * Changed: Test classes are now identified as either starting with Test* or
797
+ ending with *Test, before attempting any include/exclude patterns. Anything
798
+ ending with *TestCase or *Suite ignored for now (but if you explain why, we
799
+ can add it back).
800
+ * Changed: What used to be the projects task is now help:projects task,
801
+ anticipating more help: tasks to come.
802
+ * Changed: We now have 3(!) JDepend tasks: jdepend:swing (with windows!),
803
+ jdepend:text (console) and jdepend:xml (enterprisy).
804
+ * Changed: Good news for packagers: package_as_ yield no longer required, just
805
+ make sure to create the task once and return it each time.
806
+ * Changed: JUnit tests now run using Ant, which makes them faster to run, and
807
+ gives you text/XML reports (check out the reports/junit directory).
808
+ * Changed: Cobertura now writes reports to reports/cobertura, in fact, if
809
+ you're looking for a report of any kind, the reports directory is the place to
810
+ find it.
811
+ * Changed: Upgraded to AntWrap 0.6. Note that with AntWrap 0.6 we yield to the
812
+ block instead of doing instance_eval, so any call to the ant project must be
813
+ prefixed with an AntProject object. Code that relies on the old functionality
814
+ (and that's pretty much any code with element-containing tasks) will break.
815
+ * Changed: artifacts now accepts a struct.
816
+ * Changed: The repositories.download method folded into Artifact, the
817
+ repositories.deploy method renamed upload and folded into ActsAsArtifact.
818
+ * Changed: The deploy task is now called upload, and repositories.deploy_to is
819
+ now repositories.release_to.
820
+ * Removed: The check task, which previously was a way to find some circular
821
+ dependencies (multitask) but not others (dynamically defined).
822
+ * Removed: JUnitTask, test.junit and Java.junit methods all deprecated;
823
+ anything you need to affect the unit tests is right there in TestTask.
824
+ * Removed: The package(:jar) and package(:war) options, such as :manifest,
825
+ :include, :libs are all deprecated. Instead, use the package method to define
826
+ the package, and the with method to enhance it, e.g.
827
+ package(:war).with(:libs=>...) instead of package(:war, :libs=>...).
828
+ * Removed: The []= method on ZipTask and anything derived from it is
829
+ deprecated in favor of using attribute accessors.
830
+ * Removed: Ant.executable and Ant.declarative are deprecated. Use Buildr.ant
831
+ instead of Ant.executable. Use AntWrap directly if you need the
832
+ Ant.declarative functionality.
833
+ * Fixed: Filter now properly handles multiple keys on the same line.
834
+ * Fixed: Tests teardown now properly executing.
835
+ * Fixed: Cobertura tasks now run tests, even if test=no.
836
+ * Fixed: XMLBeans compile task not detecting change to XSD file.
837
+ * Fixed: URI.download and download task do not create directory path for
838
+ downloaded file (Anders Bengtsson).
839
+ * Fixed: Gets JVM version number from system property java.version instead of
840
+ calling java -version.
841
+ * Fixed: Artifact downloads POM first, such that you can download/create/fake
842
+ it youself.
843
+
844
+ 1.1.3 (2007-06-12)
845
+ * Added: Long awaited idea project files generation. Very early code, the iml
846
+ seems to be generated okay but needs testing. The ipr is still missing but
847
+ will come in due time (and it's not always necessary anyway).
848
+ *Fixed: Doc bug: unzip doesn't have an into(dir) method.
849
+ *Fixed: File names don't always have a dot.
850
+ *Fixed: For Jetty servers, http://foo//bar is not http://foo/bar
851
+
852
+ 1.1.2 (2007-05-29)
853
+ * Added: Allow passing :java_args option to the junit task
854
+ * Added: Hibernate XDoclet and SchemaExport tasks. (Requires buildr/hibernate)
855
+ * Added: JDepend UI for seeing depenencies across all projects. (Requires
856
+ buildr/jdepend)
857
+ * Added: Cobertura test coverage tasks, reporting both html and xml. (Requires
858
+ buildr/cobertura)
859
+ * Changed: tools_jar now returns empty array on OS X, part of the ongoing
860
+ Write Once/Test Everywere effort. (Credit Paul Brown)
861
+ * Fixed: Work around keep_alive bug in Net::HTTP.
862
+ (http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-core/10818)
863
+
864
+ 1.1.1 (2007-05-16)
865
+ * Changed: Test case class names must end with Test, TestCase, Suite or
866
+ TestSuite.
867
+ * Changed: You can now run rake test:{foo,bar} to match against either foo or
868
+ bar (requires \{..\} on UNIX).
869
+ * Changed: JAVA_HOME now required on all platforms, along with more OS X
870
+ fixes. (Credit Paul Brown)
871
+ * Fixed: You can now run rake test:<name> from any directory, and it will find
872
+ just the right test cases.
873
+
874
+ 1.1.0 (2007-05-13)
875
+ * Added: Proxy setting for downloading from remote repositories (use
876
+ repositories.proxy = ...).
877
+ * Added: projects task to list all the projects you can build.
878
+ * Added: Project attribute target to specify the target directory.
879
+ * Changed: The project and projects methods now accepts relative names when
880
+ called on a project. For example, project("foo").project("bar") finds the
881
+ sub-project "bar" in "foo".
882
+ * Changed: The project method now returns self if called on a method with no
883
+ name.
884
+ * Changed: The -warning flag (javac) is now set to true only when verbose.
885
+ * Changed: OpenJPA mapping now using Ant task instead of spawning another Java
886
+ instance.
887
+ * Changed: The test:name pattern translates to *name* so you can run tests by
888
+ package name, but only if you don't use * in the pattern.
889
+ * Changed: All projects are not evaluated when referenced (i.e. calling
890
+ project/projects) or before running any task. Project tasks do not exist until
891
+ a projet is evaluated.
892
+ * Removed: The projects method no longer accepts the :in argument, call
893
+ projects on a project instead.
894
+ * Fixed: Local directory tasks now work from any directory in the project.
895
+ * Fixed: Artifacts no longer created with timestamp from server.
896
+ * Fixed: Buildr no longer fails when run without tools.jar or JAVA_HOME
897
+ (OS X). (Credit Lyle Johnson)
898
+ * Fixed: Manifest gets EOL to keep EOF company. (Credit Tommy Knowlton)
899
+ * Fixed: Compile tasks clean after themselves when target directory changed.
900
+ (Credit Lyle Johnson)
901
+
902
+ 1.0.0 (2007-05-04)
903
+ * Added: buildr:freeze and buildr:unfreeze task. These set the Rakefile to use
904
+ a particular version of Buildr, freezing by setting to the current version of
905
+ Buildr, unfreeze to use the latest Gem.
906
+ * Added: Buildr.options, with three options to start with: test, debug and
907
+ parallel.
908
+ * Added: Buildr.option.debug or environment variable DEBUG to control the
909
+ compiler debug option. Defaults to yes, except when doing a release.
910
+ * Changed: Buildr now fails nicely if JAVA_HOME not set.
911
+ * Changed: Migrated test cases to RSpec 0.9.
912
+ * Changed: Extended circular dependency check to multitask.
913
+ * Changed: JavaCC using RJB.
914
+ * Changed: OpenJPA 0.9.7 no longer snapshoted.
915
+ * Fixed: For Windows users: user's home directory, fu_check_options is now
916
+ rake_check_options, java command works around funky system bbug.
917
+
918
+ 0.22 (2007-04-26)
919
+ * Added: Calling projects(:in=>foo) returns only the sub-projects defined in
920
+ foo.
921
+ * Added: _() as shortcut for path_to().
922
+ * Added: You can pass properties to java by setting the :properties options.
923
+ * Added: JUnit task has a way of setting options (options accessor and using
924
+ method), which for now supports passing properties to java.
925
+ * Added: You can now use the struct method to create a Struct for structoring
926
+ your multiple artifacts.
927
+ * Changed: Use rake artifacts to download all artifacts not already in the
928
+ local repository, and also download modified artifacts
929
+ (*cough*snapshots*cough*)
930
+ * Changed: Transport.download now uses timestamp on the destination file and
931
+ If-Modified-Since header to skip downloads of unmodified files.
932
+ * Changed: Downloading artifact sets the time stamp from the repository.
933
+ * Changed: Use buildr.rake in the project's directory and your home directory,
934
+ instead of buildr.rb.
935
+ * Changed: filter method accepts one argument, the source directory. Use
936
+ filter(src).into(target).
937
+ * Changed: Running Javac/Apt/Javadoc in process.
938
+ * Changed: Using Ant for OpenJPA enhancer and XMLBeans schema compiler.
939
+ * Changed: Jetty, JavaCC, OpenJPA and XMLBeans are no longer included by
940
+ default. You need to require them explicitly, e.g. require "buildr/jetty".
941
+ * Removed: Tasks no longer use a base directory, always map paths directly
942
+ using file, path_to or _().
943
+ * Fixed: The artifacts task no longer downloads POMs for artifacts created by
944
+ the Rakefile.
945
+
946
+ 0.21 (2007-04-20)
947
+ * Added: Methods to read and write a file (shortcut for
948
+ File.read/File.open.write).
949
+ * Changed: Filter task now takes a source directory and target directory, and
950
+ copies all included (sans excluded) files between the two.
951
+ * Changed: Artifact type is now symbol instead of string (so :jar instead of
952
+ "jar"). You can still specify a string, but the return value from #to_spec or
953
+ #type is a symbol.
954
+ * Changed: Eclipse task now adds "src/main/resources", "src/test/java",
955
+ "src/test/resources" to build path, and excludes ".svn" and "CVS" directories
956
+ from being copied into target directories.
957
+ * Changed: The test task will now run JUnit test cases from classes ending
958
+ with Test or Suite. And the inclusion pattern is always set.
959
+ * Fixed: Project property not inherited if false.
960
+
961
+ 0.20 (2007-04-18)
962
+ * Added: JavadocTask to generate Javadoc documentation for the project,
963
+ javadoc method on the project itself to return its javadoc task, and
964
+ Java.javadoc to do all the heavy lifting.
965
+ * Changed: Release code is now implemented as module instead of class. SVN
966
+ copy made from working copy instead of double commit.
967
+ * Removed: package :file_name options. Does not work with deployed artifacts
968
+ or POMs.
969
+ * Fixed: Packages not deployed in the right path (but POMs are).
970
+ * Fixed: JARs and WARs include redundant META-INF directory.
971
+ * Fixed: The local package task is now a dependency for install/deploy, and
972
+ build is dependency for package.
973
+
974
+ 0.19 (2007-04-13)
975
+ * Fixed: Eclipse task correctly handles FileTasks
976
+ * Fixed: Eclipse task output directory is "target/classes"
977
+ (Project.compile.target) instead of "/target"
978
+ * Added: Set specific file permissions when uploading with SFTP transport with
979
+ :permission option
980
+ * Fixed: Correctly use JAVA_HOME environment variable, if available, for
981
+ determining java version
982
+ * Added: ConcatTask and concat: a file task that creates or updates the target
983
+ file by concatenating all the file prerequisites.
984
+ * Added: Ant module (requires antwrap and rjb Gems), so also added RJB setup
985
+ module.
986
+ * Added: When zipping you can include the contents of a directory using
987
+ :as=>".".
988
+ * Added: Convenience apt method returns a file task that generates sources
989
+ using APT.
990
+ * Added: Convenience open_jpa_enhance method to enhance compiled files.
991
+ * Added: Convenience compile_xml_beans setups the compiler to include
992
+ XSD-generated XML Beans.
993
+ * Added: Convenience javacc/jjtraa methods return file tasks that generate
994
+ source files.
995
+ * Added: build is now the default task.
996
+ * Added: jetty:start and jetty:stop tasks to start/stop the server from the
997
+ console.
998
+ * Added: jetty:use to start Jetty inside the build or hook to an existing
999
+ server.
1000
+ * Added: jetty:setup and jetty:teardown to perform tasks around jetty:use.
1001
+ * Added: The local build task will now execute the local test task. So
1002
+ building a project (or sub-project) will run the test cases on that project
1003
+ (or sub-project) but not any of its dependencies.
1004
+ * Added: ZipTask accepts nested path (i.e. calling path inside a path).
1005
+ * Added: package(:war) by defaults picks libraries from the compiler
1006
+ classpath. You can always override by passing the :libs option.
1007
+ * Changed: Eclipse task now generates library path with M2_REPO variable or
1008
+ project-relative paths where appropriate
1009
+ * Changed: compile.target (CompileTask) and resources.target (Filter) are now
1010
+ file tasks, not strings. So passing the target to someone else will hopefully
1011
+ convience them to invoke or enhance it.
1012
+ * Changed: Java related tasks like OpenJPA, XMLBeans, JavaCC all moved to the
1013
+ Buildr::Java module.
1014
+ * Changed: Handling of package_as arguments to support JBI packaging.
1015
+ * Changed: meta_inf project property is an array accepting filenames (strings)
1016
+ and file tasks.
1017
+ * Changed: meta_info by default only includes the LICENSE file from the
1018
+ top-level project.
1019
+ * Changed: The WarTask :classes argument is now a directory name, and will
1020
+ include all files in this directory.
1021
+ * Changed: WarTask and JarTask accept meta_inf argument.
1022
+ * Changed: Behavior of needed? and prerequsities in base Rake::Task. This will
1023
+ probably not affect you, but don't be surprised if it disappears (see
1024
+ lib/core/rake_ext.rb for details).
1025
+ * Changed: Were previous the test task would link to test.run, it now executes
1026
+ the entire test lifecycle, and is the major point for extending the test
1027
+ lifecycle.
1028
+ * Changed: test.run is now test.junit.
1029
+ * Changed: Ant.define is now Ant.declarative, Ant.execute is now
1030
+ Ant.executable.
1031
+ * Changed: The filter method now returns a Filter class that can be used to
1032
+ set a filter, but is not itself a task. Instead, it creates a task when
1033
+ setting its target.
1034
+ * Changed: Project.resources now returns a ResourceTask that includes, but is
1035
+ not itself a filter, accessed using the accessor filter.
1036
+ * Changed: UnzipTask eliminated and replaced with Unzip which you now have to
1037
+ run directly by calling extract. However, unzip method creates a file task
1038
+ and returns an Unzip object that can be used as a reference to that file
1039
+ task.
1040
+ * Changed: Attributes is now InheritedAttributes.
1041
+ * Changed: The first call to package configures the package task from the
1042
+ options, the second call only returns the package task.
1043
+ * Removed: :cp argument, always use :classpath.
1044
+ * Removed: src_dir, java_src_dir, target_dir, webapp_src_dir and all other
1045
+ premature configuration attributes.
1046
+ * Removed: Project tests method deprecated in favor of a single test method;
1047
+ it now accepts an enhancement block, not an instance_eval block.
1048
+ * Removed: FilterTask is dead.
1049
+ * Removed: sub_projects method. Is anyone using this?
1050
+ * Fixed: Local buildr.rb not loaded from running from inside a sub-project
1051
+ directory.
1052
+ * Fixed: Eclipse task now executed whenever a change is made in the Rakefile,
1053
+ or any file it requires, include buildr.rb and task files.
1054
+ * Fixed: Circular dependency in release task.
1055
+
1056
+ 0.18 (2007-03-26)
1057
+ * Added: manifest attribute on project, used by default when packaging
1058
+ JAR/WAR.
1059
+ * Added: default manifest includes build-by, build-jdk and
1060
+ implementation-title.
1061
+ * Added: compile.from(sources) in the same vein as compile.with(classpath)
1062
+ * Added: load all *.rake files form the tasks directory (if exists) for use
1063
+ in
1064
+ the main Rakefile.
1065
+ * Added: Java.tools returns a reference to tools.jar on JDKs that include it.
1066
+ * Added: brought back experimental test tasks.
1067
+ * Added: artifacts task to download all artifacts referenced by project (using
1068
+ either artifact or artifacts method).
1069
+ * Changed: back to old behavior, compile task only executes if there are any
1070
+ files to compile, and compile? method removed.
1071
+ * Changed: repositories.remote is now an array instead of a hash, and
1072
+ repositories are searched in the order in which they appear.
1073
+ * Changed: release task is now a regular task, using the Release object
1074
+ instead of being a ReleaseTask.
1075
+ * Changed: eclipse task executes artifacts task.
1076
+ * Fixed: inherited attributes now cache default value, useful when working
1077
+ with arrays/hashes.
1078
+ * Fixed: manifest file generated even if manifest attribute is false.
1079
+ * Fixed: compile task now properly detects when not all files compiled.
1080
+ * Fixed: bug that caused project file tasks to execute twice.
1081
+
1082
+ 0.17 (2007-03-14)
1083
+ * Added: project.task acts like Rake's task but can also fetch a task from a
1084
+ project using the project's namespace.
1085
+ * Added: project.file acts like Rake's file but resolve relative paths based
1086
+ on the project base directory.
1087
+ * Added: Rake tasks execute in the directory in which they were defined.
1088
+ * Added: enhanced Rake with circular dependency, and you can find all circular
1089
+ dependencies by running rake check.
1090
+ * Added: enhanced Rake in_namespace, if the namespace starts with colon,
1091
+ creates a namespace relative to the root instead of the current namespace.
1092
+ * Changed: a project definition is now a task definition.
1093
+ * Changed: use enhance to extend the project definition instead of
1094
+ after_define.
1095
+ * Changed: LocalDirectoryTask replaced with Project.local_task.
1096
+ * Changed: projects method accepts multiple names, returning only these
1097
+ project definitions, returns all of them with no arguments.
1098
+ * Changed: packge only defines the essentials once, so you can call package on
1099
+ a project to retrieve a specific package by type/id.
1100
+ * Changed: zip task (and jar/war) no longer resolve artifacts for you, must
1101
+ call artifacts directly.
1102
+ * Changed: cannot access a project before it's defined, but can do that with
1103
+ sub-projects to establish dependencies.
1104
+
1105
+ 0.16 (2007-03-07)
1106
+ * Added: zip.include :as=> to include file under specified name.
1107
+ * Added: zip.merge to include the (expanded) contents of one zip file in
1108
+ another.
1109
+ * Added: experimental test task using JUnit and JMock.
1110
+ * Changed: project.to_s returns name, projects returns sorted by name.
1111
+ * Changed: project definition now executed using project's base directory as
1112
+ the current directory.
1113
+ * Fixed: artifact test cases and minor code cleanup.
1114
+ * Fixed: attempts to download artifact even if created by task.
1115
+ * Fixed: release task now deletes old tagged copy and reports SVN usage.
1116
+ * Fixed: OpenJPA not including target directory in classpath.
1117
+
1118
+ 0.15 (2007-02-28)
1119
+ * Fixed: tasks fail unless deployment server specified.
1120
+ * Changed: deploy method executes deployment, instead of returning a task.
1121
+
1122
+ 0.14 (2007-02-28)
1123
+ * Added: check task that looks for obvious errors in the Rakefile.
1124
+ * Added: deploy task for managing deployment.
1125
+ * Added: release task that updates version numbers, commits and tags SVN.
1126
+ * Changed: the project name is now the fully qualified name, e.g. ode:axis2
1127
+ * Changed: you can now lookup a project before it's defined; you still can
1128
+ only define a project once.
1129
+ * Changed: you can lookup projects by full qualified name.
1130
+ * Changed: release_to changed to deploy_to, which is now a getter/setter.
1131
+ * Fixed: removed Java.home which conflicted with JRuby.
1132
+ * Fixed: install task did not re-install modified files.
1133
+ * Fixed: deploying only uploads one artifact.
1134
+ * Fixed: timing issues.
1135
+ * Fixed: Maven classifier now used properly.
1136
+
1137
+ 0.13 (2007-02-26)
1138
+ * Added: global java method.
1139
+ * Added: project build method.
1140
+ * Added: OpenJPA mapping_tool method.
1141
+ * Added: Rakefile to generate Gem.
1142
+ * Changed: you can now lookup a sub-project from the top project method.
1143
+ * Changed: the projects methods return all sub-projects.
1144
+ * Fixed: bug in JarTask that resolved artifacts too early.
1145
+ * Fixed: global tasks (clean, build, etc) now complain if executed from a
1146
+ directory that does not map to any project.
1147
+ * Fixed: to work with Rake 0.7.2.
1148
+
1149
+ 0.12 (2007-02-24)
1150
+ * Added: call prepare with list of tasks to add them as prerequisites.
1151
+ * Added: project.id returns the compound name, e.g. foo, foo-bar,
1152
+ foo-bar-baz.
1153
+ * Added: JavaCC, XMLBeans schema compiler, OpenJPA enhancer, APT tasks.
1154
+ * Changed: the default package ID is take from the project ID instead of its
1155
+ name.
1156
+ * Changed: renamed buildr and moved here.
1157
+ * Changed: moved all code into Buildr module.
1158
+ * Fixed: download breaking when POM not found.
1159
+ * Fixed: compile task fails if classpath is empty.
1160
+ * Fixed: zip task fails if target directory does not exist.
1161
+ * Fixed: packaging task does not require build.
1162
+ * Fixed: compiler not showing command when trace is on.
1163
+ * Fixed: zip dependencies were all fucked up.
1164
+ * Fixed: package should not depend on build.
1165
+
1166
+ 0.11 (2007-02-16)
1167
+ * Added: test cases for unzip task
1168
+ * Added: prepare method to access prepare task
1169
+ * Added: prepare, compile and resources accept a block you can use to enhance
1170
+ the task
1171
+ * Changed: ZipTask executes all includes files as prerequisites, and now
1172
+ includes directories correctly
1173
+ * Changed: Jar/WarTask are now extended using with(options) method
1174
+ * Changed: JarTask now accepts array of sections (each being a hash) for the
1175
+ manifest, and a proc/method to generate it
1176
+ * Changed: added HighLine to hide password entry on the command line
1177
+ * Changed: unzip now using UnzipTask with its own shorthand syntax.
1178
+ * Changed: filter task gets a consistent syntax to unzip
1179
+
1180
+ 0.10 (2007-02-13)
1181
+ * Added: modifier for artifacts
1182
+ * Added: ZipTask, WarTask
1183
+ * Added: get POM artifact directly from artifact
1184
+ * Changed: JAR and WAR packaging based on new and improved Zip task
1185
+ * Changed: options for packaging, but not affecting current Rakefile
1186
+ * Remove: delete task
1187
+
1188
+ 0.9 (2007-02-09)
1189
+ * Added: attributes for configuring compile (sources, classpath, target,
1190
+ options)
1191
+ * Added: shorthand notation for specifying compilation (to, with, using)
1192
+ * Changed: copy task is dead (name conflict), instead we get the better filter
1193
+ task with include/exclude patterns
1194
+ * Changed: rewrite of compile task, now better than ever
1195
+ * Changed: compile can be used inside and outside project
1196
+ * Changed: compiler no longer infers anything from its prerequisites
1197
+ * Changed: compiler accepts files, artifacts and tasks on the classpath
1198
+ * Changed: resources task now working as expected
1199
+ * Remove: global task artifacts was the root of all evil and got canned.
1200
+
1201
+ 0.8 (2007-02-05)
1202
+ * Added: release task and release_to configuration for repositories
1203
+ * Added: SFTP uploader for releases
1204
+ * Added: convenience method group() for specifying multiple artifacts in same
1205
+ group and version number
1206
+ * Added: install target copies package to local repository and adds a POM,
1207
+ uninstall package removes package (and POM) from local repository
1208
+ * Changed: project lookup now happens through project() method
1209
+ * Changed: locating file in the local repository now happens through
1210
+ Repositories
1211
+ * Changed: downloading file into the local repository now happens through
1212
+ Repositories
1213
+ * Changed: notation for specifying multiple artifacts in a string is now
1214
+ foo,bar,baz
1215
+ * Changed: artifact identifier is now specified with the key :id
1216
+ * Changed: download POM alongside artifact and install in local repository
1217
+ * Changed: no more scoping artifacts collection in project, use compile.with
1218
+ instead
1219
+ * Changed: moved HTTP download logic to transports.rb
1220
+ * Removed: deprecated grouping with multiple artifacts under id key
1221
+
1222
+ 0.6 (2007-02-01)
1223
+ * Added: Artifact resolution introduces the notion of a spec, which can be
1224
+ supported using ActsAsArtifact
1225
+ * Added: You can now use a project as an artifact, resulting in all its
1226
+ packages being added, or use a task as artifact
1227
+ * Changed: project.sub_projects renamed project.projects
1228
+ * Changed: what used to be called dependencies is now called artifacts
1229
+ * Changed: all artifacts are now created as tasks that know how to download
1230
+ themselves unless some other behavior is specified
1231
+ * Changed: local and remote repositories are now defined on the Rakefile
1232
+ instead of individual projects
1233
+ * Changed: attributes now stored directly as instance variables
1234
+ * Changed: ANSI colors and progress bar now using Ruby Facets
1235
+
1236
+ 0.5 (2007-01-24)
1237
+ * Added: Build number for each top-level project, build_number method for
1238
+ accessing it and build:increment task for updating the build number file.
1239
+ * Added: to_path method on project to resolve paths relative to base_dir.
1240
+ * Added: recursive_task method on project to create task in
1241
+ project/sub-project.
1242
+ * Added: compiler property for passing any options to Javac.
1243
+ * Changed: remove task renamed uninstall.
1244
+ * Changed: and to confuse more remove task (RemoveTask) renamed delete.
1245
+ * Changed: consolidated before_create/after_create to on_create.
1246
+ * Changed: version, group, artifact added as accessors to project.
1247
+ * Changed: project definition block takes project as argument.
1248
+ * Changed: project enhanced only if new settings or block.
1249
+ * Changed: local_repository is now separate attribute from repositories.
1250
+ * Changed: Directory structure, now split into rbs, rbs-java and tasks.
1251
+ * Removed: project.options. Using a different attributes mechanism.
1252
+
1253
+ 0.4 (2007-01-23)
1254
+ * Added: CopyTask now deals with files and directories, can copy multiple
1255
+ files, and applies filter to all of them. Filter can be a hash or a proc.
1256
+ * Added: Project gets resources_filter attribute that can be used to set the
1257
+ filter on all copied resources.
1258
+ * Added: HTTP module for getting and downloading files, and a download task.
1259
+ * Changed: Dependencies now check signatures for every file, if available, and
1260
+ show download progress.
1261
+
1262
+ 0.3 (2007-01-22)
1263
+ * Added: Dependencies loaded from Maven repositories if not existing or built
1264
+ by project. Use rake dependencies to force update, or let compilation take
1265
+ care of it.
1266
+ * Added: Copy task for copying one file to another, and filtering support.
1267
+
1268
+ 0.2 (2007-01-21)
1269
+ * Added: remove task to get rid of packages added to the local repository.
1270
+ * Changed: recompile project if any of its dependencies is newer than the
1271
+ source code. Will cause recompile if any of the dependencies was compiled and
1272
+ packaged again.
1273
+ * Changed: compile task depends on javac task and resource copy tasks. This
1274
+ might change when adding filtering later on.
1275
+
1276
+ 0.1 (2007-01-19)
1277
+ * Added: build and clean tasks
1278
+ * Added: resources are now copied over during compilation
1279
+ * Added: POM file generated in local repository (keep Maven happy)
1280
+ * Added: compile scope for use by javac
1281
+ * Added: WAR packaging.
1282
+ * Changed: Root project operates on the current directory, sub-projects on sub
1283
+ directories. See Rakefile for example.