novoda-buildr 1.4.0

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