buildr 1.4.4-java → 1.4.5-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. data/CHANGELOG +46 -0
  2. data/Rakefile +0 -1
  3. data/addon/buildr/bnd.rb +147 -0
  4. data/addon/buildr/jaxb_xjc.rb +72 -0
  5. data/addon/buildr/protobuf.rb +14 -1
  6. data/buildr.gemspec +6 -2
  7. data/doc/artifacts.textile +6 -0
  8. data/doc/contributing.textile +3 -0
  9. data/doc/download.textile +60 -0
  10. data/doc/index.textile +9 -15
  11. data/doc/installing.textile +23 -6
  12. data/doc/mailing_lists.textile +4 -0
  13. data/doc/more_stuff.textile +333 -6
  14. data/doc/packaging.textile +187 -1
  15. data/lib/buildr.rb +8 -1
  16. data/lib/buildr/clojure.rb +34 -0
  17. data/lib/buildr/clojure/shell.rb +52 -0
  18. data/lib/buildr/core.rb +3 -0
  19. data/lib/buildr/core/#application.rb# +700 -0
  20. data/lib/buildr/core/application.rb +18 -8
  21. data/lib/buildr/core/build.rb +2 -2
  22. data/lib/buildr/core/cc.rb +57 -63
  23. data/lib/buildr/core/checks.rb +4 -5
  24. data/lib/buildr/core/doc.rb +3 -1
  25. data/lib/buildr/core/generate.rb +2 -0
  26. data/lib/buildr/core/jrebel.rb +42 -0
  27. data/lib/buildr/core/linux.rb +30 -0
  28. data/lib/buildr/core/project.rb +9 -8
  29. data/lib/buildr/core/run.rb +3 -3
  30. data/lib/buildr/core/shell.rb +29 -90
  31. data/lib/buildr/core/test.rb +3 -3
  32. data/lib/buildr/core/transports.rb +5 -5
  33. data/lib/buildr/core/util.rb +2 -2
  34. data/lib/buildr/groovy.rb +1 -0
  35. data/lib/buildr/groovy/compiler.rb +12 -1
  36. data/lib/buildr/groovy/doc.rb +76 -0
  37. data/lib/buildr/groovy/shell.rb +24 -15
  38. data/lib/buildr/ide.rb +1 -1
  39. data/lib/buildr/ide/idea.rb +527 -141
  40. data/lib/buildr/java/bdd.rb +18 -13
  41. data/lib/buildr/java/ecj.rb +1 -3
  42. data/lib/buildr/java/jtestr_result.rb +295 -0
  43. data/lib/buildr/java/jtestr_runner.rb.erb +4 -6
  44. data/lib/buildr/java/packaging.rb +14 -3
  45. data/lib/buildr/java/pom.rb +6 -2
  46. data/lib/buildr/java/test_result.rb +15 -243
  47. data/lib/buildr/java/tests.rb +1 -1
  48. data/lib/buildr/packaging.rb +2 -1
  49. data/lib/buildr/packaging/#package.rb.rej# +19 -0
  50. data/lib/buildr/packaging/archive.rb +13 -3
  51. data/lib/buildr/packaging/artifact.rb +11 -12
  52. data/lib/buildr/packaging/tar.rb +4 -1
  53. data/lib/buildr/packaging/zip.rb +106 -1
  54. data/lib/buildr/resources/completed.png +0 -0
  55. data/lib/buildr/resources/failed.png +0 -0
  56. data/lib/buildr/resources/icons-license.txt +17 -0
  57. data/lib/buildr/run.rb +7 -14
  58. data/lib/buildr/scala/#Untitled-2# +7 -0
  59. data/lib/buildr/scala/bdd.rb +1 -1
  60. data/lib/buildr/scala/compiler.rb +1 -1
  61. data/lib/buildr/scala/doc.rb +20 -2
  62. data/lib/buildr/scala/shell.rb +14 -22
  63. data/lib/buildr/scala/tests.rb +2 -2
  64. data/lib/buildr/shell.rb +113 -108
  65. data/lib/buildr/version.rb +1 -1
  66. data/rakelib/checks.rake +9 -7
  67. data/rakelib/doc.rake +10 -0
  68. data/rakelib/release.rake +9 -0
  69. data/rakelib/rspec.rake +27 -28
  70. data/rakelib/setup.rake +1 -1
  71. data/rakelib/stage.rake +2 -2
  72. data/spec/addon/bnd_spec.rb +330 -0
  73. data/spec/addon/jaxb_xjc_spec.rb +125 -0
  74. data/spec/core/application_spec.rb +1 -1
  75. data/spec/core/build_spec.rb +7 -7
  76. data/spec/core/cc_spec.rb +154 -104
  77. data/spec/core/compile_spec.rb +3 -3
  78. data/spec/core/project_spec.rb +10 -0
  79. data/spec/core/run_spec.rb +1 -0
  80. data/spec/core/shell_spec.rb +146 -0
  81. data/spec/groovy/doc_spec.rb +65 -0
  82. data/spec/ide/eclipse_spec.rb +1 -1
  83. data/spec/ide/idea_spec.rb +1145 -0
  84. data/spec/java/bdd_spec.rb +3 -3
  85. data/spec/java/emma_spec.rb +2 -0
  86. data/spec/java/packaging_spec.rb +40 -11
  87. data/spec/java/test_coverage_helper.rb +1 -1
  88. data/spec/packaging/archive_spec.rb +76 -21
  89. data/spec/packaging/artifact_namespace_spec.rb +1 -1
  90. data/spec/packaging/artifact_spec.rb +14 -7
  91. data/spec/sandbox.rb +11 -4
  92. data/spec/scala/bdd_spec.rb +2 -2
  93. data/spec/scala/compiler_spec.rb +2 -2
  94. data/spec/scala/doc_spec.rb +24 -4
  95. data/spec/scala/scala.rb +2 -2
  96. data/spec/scala/tests_spec.rb +2 -2
  97. data/spec/spec_helpers.rb +9 -8
  98. data/spec/xpath_matchers.rb +121 -0
  99. metadata +240 -160
  100. data/lib/buildr/ide/idea.ipr.template +0 -300
  101. data/lib/buildr/ide/idea7x.ipr.template +0 -290
  102. data/lib/buildr/ide/idea7x.rb +0 -231
  103. data/spec/ide/idea7x_spec.rb +0 -96
data/CHANGELOG CHANGED
@@ -1,3 +1,49 @@
1
+ 1.4.5 (2011-02-20)
2
+ * Added: BUILDR-555 Add support for the jaxb binding compiler (Mark Petrovic)
3
+ * Added: BUILDR-554 Add support for OSGi bundle packages by importing the
4
+ buildr_bnd plugin
5
+ * Added: BUILDR-125 Add support for <security-role> in application.xml of
6
+ EAR packaging (Mikael Amborn)
7
+ * Added: BUILDR-550 Add support for groovydoc
8
+ * Added: BUILDR-521: System tray notifications for Linux systems
9
+ (via libnotify/notify-send)
10
+ * Added: BUILDR-537 Shell tasks should use JAVA_OPTS by default
11
+ * Added: BUILDR-538 Shell tasks should support passing :java_args
12
+ * Added: BUILDR-544 Support ${groupId} in pom files (Chris Dean)
13
+ * Added: BUILDR-552 Projects may now be defined using project(:name) and a block
14
+ * Added: BUILDR-564 Add package(:scaladoc)
15
+ * Added: Automatically add "require buildr/{groovy,scala}" when generating
16
+ project if Groovy/Scala files are detected.
17
+ * Change: BUILDR-540 Upgrade to rspec 2.1.0
18
+ * Change: BUILDR-546 Upgrade to Rubyzip 0.9.4 (Michael Guymon)
19
+ * Change: BUILDR-556 Merge buildr-iidea extension back into buildr.
20
+ * Change: Upgrade default Scala compiler version to 2.8.1-final
21
+ * Change: Upgrade to ScalaCheck 1.8
22
+ * Change: Upgrade to ScalaTest 1.3
23
+ * Change: Upgrade to Specs 1.6.6
24
+ * Chagne: Upgrade to JRuby 1.5.6
25
+ * Fixed: BUILDR-542 Release task: SVN tagging fails if parent tag directory
26
+ does not exist yet (Gerolf Seitz)
27
+ * Fixed: BUILDR-543 POMs are installed and uploaded twice when using artifacts
28
+ with classifier
29
+ * Fixed: BUILDR-522 Send notifications when continuous compilation
30
+ succeeds/fails.
31
+ * Fixed: BUILDR-551 Continuous compilation not working for project trees
32
+ * Fixed: BUILDR-557 MD5 + SHA1 checksums are not Maven compliant (Tammo van Lessen)
33
+ * Change: Upgrade to Groovy 1.7.5
34
+ * Change: BUILDR-545 Add the ability to specify the description element in in
35
+ application.xml contained within an ear.
36
+ * Fixed: BUILDR-547 - Ensure ECJ compiler works when there is a space in the
37
+ path of dependencies.
38
+ * Fixed: BUILDR-558 Artifact uploads should show a progress bar (Tammo van Lessen)
39
+ * Fixed: BUILDR-560 show a meaning full error message when POM cannot be parsed
40
+ (Tammo van Lessen)
41
+ * Fixed: BUILDR-562 WAR package isn't updated if files under src/main/webapp
42
+ are updated
43
+ * Fixed: BUILDR-569 Buildr fails under JRuby 1.6.0.RC1 due to read-only $? variable
44
+ * Fixed: BUILDR-570 Buildr does not work with Rubygems 1.5.x
45
+ * Fixed: Scaladoc task would cause build to exit prematurely
46
+
1
47
  1.4.4 (2010-11-16)
2
48
  * Change: BUILDR-549 Upgrade to RJB 1.3.3 to address "Cannot create JVM" issue with Java Update 3
3
49
  on Mac OS X. Win32 platform upgraded to RJB 1.3.2.
data/Rakefile CHANGED
@@ -13,7 +13,6 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
-
17
16
  # We need JAVA_HOME for most things (setup, spec, etc).
18
17
  unless ENV['JAVA_HOME']
19
18
  if RUBY_PLATFORM[/java/]
@@ -0,0 +1,147 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with this
3
+ # work for additional information regarding copyright ownership. The ASF
4
+ # licenses this file to you under the Apache License, Version 2.0 (the
5
+ # "License"); you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
+ # License for the specific language governing permissions and limitations under
14
+ # the License.
15
+
16
+ module Buildr
17
+ module Bnd
18
+ class << self
19
+ # The specs for requirements
20
+ def dependencies
21
+ ["biz.aQute:bnd:jar:0.0.384"]
22
+ end
23
+
24
+ # Repositories containing the requirements
25
+ def remote_repository
26
+ "http://www.aQute.biz/repo"
27
+ end
28
+
29
+ def bnd_main(*args)
30
+ cp = Buildr.artifacts(self.dependencies).each(&:invoke).map(&:to_s)
31
+ Java::Commands.java 'aQute.bnd.main.bnd', *(args + [{ :classpath => cp }])
32
+ end
33
+ end
34
+
35
+ class BundleTask < Rake::FileTask
36
+ attr_reader :project
37
+ attr_accessor :classpath
38
+
39
+ def [](key)
40
+ @params[key]
41
+ end
42
+
43
+ def []=(key, value)
44
+ @params[key] = value
45
+ end
46
+
47
+ def classpath_element(dependencies)
48
+ artifacts = Buildr.artifacts([dependencies])
49
+ self.prerequisites << artifacts
50
+ artifacts.each do |dependency|
51
+ self.classpath << dependency.to_s
52
+ end
53
+ end
54
+
55
+ def to_params
56
+ params = self.project.manifest.merge(@params).reject { |k, v| v.nil? }
57
+ params["-classpath"] ||= self.classpath.collect(&:to_s).join(", ")
58
+ params['Bundle-SymbolicName'] ||= [self.project.group, self.project.name.gsub(':', '.')].join('.')
59
+ params['Bundle-Name'] ||= self.project.comment || self.project.name
60
+ params['Bundle-Description'] ||= self.project.comment
61
+ params['Bundle-Version'] ||= self.project.version
62
+ if params["Include-Resource"].nil? && !project.resources.target.nil?
63
+ params["Include-Resource"] = "#{project.resources.target}/"
64
+ end
65
+ params['-removeheaders'] ||= "Include-Resource,Bnd-LastModified,Created-By,Implementation-Title,Tool"
66
+
67
+ params
68
+ end
69
+
70
+ def project=(project)
71
+ @project = project
72
+ end
73
+
74
+ def classpath=(classpath)
75
+ @classpath = []
76
+ Buildr.artifacts([classpath.flatten.compact]).each do |dependency|
77
+ self.prerequisites << dependency
78
+ @classpath << dependency.to_s
79
+ end
80
+ @classpath
81
+ end
82
+
83
+ def classpath
84
+ @classpath ||= ([project.compile.target] + project.compile.dependencies).flatten.compact
85
+ end
86
+
87
+ protected
88
+
89
+ def initialize(*args) #:nodoc:
90
+ super
91
+ @params = {}
92
+ enhance do
93
+ filename = self.name
94
+ # Generate BND file with same name as target jar but different extension
95
+ bnd_filename = filename.sub /(\.jar)?$/, '.bnd'
96
+
97
+ params = self.to_params
98
+ params["-output"] = filename
99
+ File.open(bnd_filename, 'w') do |f|
100
+ f.print params.collect { |k, v| "#{k}=#{v}" }.join("\n")
101
+ end
102
+
103
+ Buildr::Bnd.bnd_main( "build", "-noeclipse", bnd_filename )
104
+ begin
105
+ Buildr::Bnd.bnd_main( "print", "-verify", filename )
106
+ rescue => e
107
+ rm filename
108
+ raise e
109
+ end
110
+ end
111
+ end
112
+ end
113
+
114
+ module ProjectExtension
115
+ include Extension
116
+
117
+ first_time do
118
+ desc "Does `bnd print` on the packaged bundle and stdouts the output for inspection"
119
+ Project.local_task("bnd:print")
120
+ end
121
+
122
+ def package_as_bundle(filename)
123
+ project.task('bnd:print' => [filename]) do |task|
124
+ Buildr::Bnd.bnd_main("print", filename)
125
+ end
126
+
127
+ dirname = File.dirname(filename)
128
+ directory(dirname)
129
+
130
+ # Add Buildr.application.buildfile so it will rebuild if we change settings
131
+ task = BundleTask.define_task(filename => [Buildr.application.buildfile, dirname])
132
+ task.project = self
133
+ # the last task is the task considered the packaging task
134
+ task
135
+ end
136
+
137
+ # Change the bundle package to .jar extension
138
+ def package_as_bundle_spec(spec)
139
+ spec.merge(:type => :jar)
140
+ end
141
+ end
142
+ end
143
+ end
144
+
145
+ class Buildr::Project
146
+ include Buildr::Bnd::ProjectExtension
147
+ end
@@ -0,0 +1,72 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with this
3
+ # work for additional information regarding copyright ownership. The ASF
4
+ # licenses this file to you under the Apache License, Version 2.0 (the
5
+ # "License"); you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
+ # License for the specific language governing permissions and limitations under
14
+ # the License.
15
+
16
+ module Buildr
17
+ module JaxbXjc
18
+ class << self
19
+
20
+ def jaxb_version
21
+ "2.2.1"
22
+ end
23
+
24
+ # The specs for requirements
25
+ def dependencies
26
+ [
27
+ "javax.xml.bind:jaxb-api:jar:#{jaxb_version}",
28
+ "com.sun.xml.bind:jaxb-impl:jar:#{jaxb_version}",
29
+ "com.sun.xml.bind:jaxb-xjc:jar:#{jaxb_version}"
30
+ ]
31
+ end
32
+
33
+ # Repositories containing the requirements
34
+ def remote_repository
35
+ "http://download.java.net/maven/2"
36
+ end
37
+
38
+ def xjc(*args)
39
+ cp = Buildr.artifacts(self.dependencies).each(&:invoke).map(&:to_s)
40
+ Java::Commands.java 'com.sun.tools.xjc.XJCFacade', *(args + [{ :classpath => cp }])
41
+ end
42
+ end
43
+
44
+ def compile_jaxb(files, *args)
45
+ options = Hash === args.last ? args.pop.dup : {}
46
+ rake_check_options options, :directory, :keep_content, :package, :id
47
+ args = args.dup
48
+ files = Array === files ? files.flatten : [files]
49
+
50
+ target_dir = options[:directory] || path_to(:target, :generated, :jaxb)
51
+ timestamp_file = File.expand_path("#{target_dir}/jaxb-#{options[:id] || 1}.cache")
52
+
53
+ file(target_dir => timestamp_file)
54
+
55
+ file(timestamp_file => files.flatten) do |task|
56
+ rm_rf target_dir unless options[:keep_content]
57
+ mkdir_p target_dir
58
+ args << "-d" << target_dir
59
+ args << "-p" << options[:package] if options[:package]
60
+ args += files.collect{|f| f.to_s}
61
+ JaxbXjc.xjc args
62
+ touch timestamp_file
63
+ end
64
+
65
+ target_dir
66
+ end
67
+ end
68
+ end
69
+
70
+ class Buildr::Project
71
+ include Buildr::JaxbXjc
72
+ end
@@ -15,7 +15,20 @@
15
15
 
16
16
 
17
17
  module Buildr
18
- # Provides Protocol buffer code generation tasks. Require explicitly using <code>require "buildr/protobuf"</code>.
18
+
19
+ # Provides Protocol buffer code generation tasks.
20
+ #
21
+ # Require explicitly using <code>require "buildr/protobuf"</code>.
22
+ #
23
+ # Usage in your project:
24
+ #
25
+ # protoc _("path/to/proto/files")
26
+ #
27
+ # and also supports two options,
28
+ #
29
+ # :output => "target/generated/protoc" # this is the default
30
+ # :lang => "java" # defaults to compile.language
31
+ #
19
32
  module Protobuf
20
33
  class << self
21
34
  def protoc(*args)
data/buildr.gemspec CHANGED
@@ -54,7 +54,7 @@ for those one-off tasks, with a language that's a joy to use.
54
54
  spec.add_dependency 'builder', '2.1.2'
55
55
  spec.add_dependency 'net-ssh', '2.0.23'
56
56
  spec.add_dependency 'net-sftp', '2.0.4'
57
- spec.add_dependency 'rubyzip', '0.9.1'
57
+ spec.add_dependency 'rubyzip', '0.9.4'
58
58
  spec.add_dependency 'highline', '1.5.1'
59
59
  spec.add_dependency 'json_pure', '1.4.3'
60
60
  spec.add_dependency 'rubyforge', '2.0.3'
@@ -62,7 +62,11 @@ for those one-off tasks, with a language that's a joy to use.
62
62
  spec.add_dependency 'rjb', '1.3.3' if spec.platform.to_s == 'ruby'
63
63
  spec.add_dependency 'rjb', '1.3.2' if spec.platform.to_s == 'x86-mswin32'
64
64
  spec.add_dependency 'atoulme-Antwrap', '0.7.1'
65
- spec.add_dependency 'rspec', '~> 1.3.1'
65
+ spec.add_dependency 'diff-lcs', '1.1.2'
66
+ spec.add_dependency 'rspec-expectations', '2.1.0'
67
+ spec.add_dependency 'rspec-mocks', '2.1.0'
68
+ spec.add_dependency 'rspec-core', '2.1.0'
69
+ spec.add_dependency 'rspec', '2.1.0'
66
70
  spec.add_dependency 'xml-simple', '1.0.12'
67
71
  spec.add_dependency 'minitar', '0.5.3'
68
72
  spec.add_dependency 'jruby-openssl', '>= 0.7' if spec.platform.to_s == 'java'
@@ -102,6 +102,12 @@ When you call @repositories.remote@, you get an array of URLs for the various re
102
102
  repositories.remote << 'http://www.ibiblio.org/maven2/'
103
103
  {% endhighlight %}
104
104
 
105
+ If your repository requires HTTP authentication, you can write,
106
+
107
+ {% highlight ruby %}
108
+ repositories.remote << URI.parse("http://user:password@repository.example.com")
109
+ {% endhighlight %}
110
+
105
111
  If you need to use a proxy server to access remote repositories, you can set the environment variable @HTTP_PROXY@ to the proxy server URL (use @HTTPS_PROXY@ for proxying HTTPS connections). You can also work without a proxy for certain hosts by specifying the @NO_PROXY@ environment variable. For example:
106
112
 
107
113
  {% highlight sh %}
@@ -263,3 +263,6 @@ Daniel originally came to Buildr in search of a Scala build tool which was bette
263
263
 
264
264
  Antoine used Buildr first as an excuse to evade in Ruby land, creating plugins for Debian packaging, GWT compilation, or the NSIS installer. His main area of interest is the resolving of dependencies in the OSGi world. He works on making Buildr a standalone rock solid tool.
265
265
 
266
+ * Peter Donald
267
+
268
+ Peter already used rake to automate jobs in his ruby and java projects. When it came time to upgrade that home grown ant/java/rake build system Buildr seemed the perfect match.
data/doc/download.textile CHANGED
@@ -20,6 +20,66 @@ The source code is included in both source and binary distribution, the Gem dist
20
20
 
21
21
  h2(#dist). Binaries and Source Code
22
22
 
23
+ h3. buildr 1.4.5 (2011-02-21)
24
+
25
+ |_. Package |_. MD5 Checksum |_. PGP |
26
+ | "buildr-1.4.5.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5.gem | "e1f2ea28509edfe6d26a62170631a602":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.gem.asc |
27
+ | "buildr-1.4.5-x86-mswin32.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5-x86-mswin32.gem | "353ec61f88ffaec863795d7291c7b8f4":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-x86-mswin32.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-x86-mswin32.gem.asc |
28
+ | "buildr-1.4.5-java.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5-java.gem | "757c3730e930aab11cb341251e471c8d":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-java.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-java.gem.asc |
29
+ | "buildr-1.4.5.tgz":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5.tgz | "2a0f3ee003a0d6c1db14345c1bfcd58a":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.tgz.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.tgz.asc |
30
+ | "buildr-1.4.5.zip":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5.zip | "2beb6044c1e1d77f36e410b9a04d6a4b":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.zip.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.zip.asc |
31
+
32
+ p>. ("Release signing keys":http://www.apache.org/dist/buildr/1.4.5/KEYS)
33
+
34
+
35
+ h3. buildr 1.4.5 (2011-02-21)
36
+
37
+ |_. Package |_. MD5 Checksum |_. PGP |
38
+ | "buildr-1.4.5.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5.gem | "3f92c102106ee7882a40b7d9fff0d053":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.gem.asc |
39
+ | "buildr-1.4.5-x86-mswin32.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5-x86-mswin32.gem | "7c9432e0d7607878a703f1e83d913b60":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-x86-mswin32.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-x86-mswin32.gem.asc |
40
+ | "buildr-1.4.5-java.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5-java.gem | "ce63e88a1ce9979964af4e0e45295fe0":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-java.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-java.gem.asc |
41
+ | "buildr-1.4.5.tgz":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5.tgz | "1169dc2ee594c90a2aecfeebd8709ac0":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.tgz.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.tgz.asc |
42
+ | "buildr-1.4.5.zip":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5.zip | "59344c0ddfe8afe0c2d286c577bfbb03":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.zip.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.zip.asc |
43
+
44
+ p>. ("Release signing keys":http://www.apache.org/dist/buildr/1.4.5/KEYS)
45
+
46
+
47
+ h3. buildr 1.4.5 (2011-02-20)
48
+
49
+ |_. Package |_. MD5 Checksum |_. PGP |
50
+ | "buildr-1.4.5.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5.gem | "c43e9ce25729c681fcd4a1124b1a9417":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.gem.asc |
51
+ | "buildr-1.4.5-x86-mswin32.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5-x86-mswin32.gem | "a23d0a2cc318bc58ef684117020c71ef":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-x86-mswin32.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-x86-mswin32.gem.asc |
52
+ | "buildr-1.4.5-java.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5-java.gem | "e6a4309da91c6a725798a8ed36b4f20c":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-java.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-java.gem.asc |
53
+ | "buildr-1.4.5.tgz":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5.tgz | "756aac6e81d35c594b1a5b7666fc7447":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.tgz.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.tgz.asc |
54
+ | "buildr-1.4.5.zip":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5.zip | "ceb45fc68aa2db5f626a2b5d07152145":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.zip.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.zip.asc |
55
+
56
+ p>. ("Release signing keys":http://www.apache.org/dist/buildr/1.4.5/KEYS)
57
+
58
+
59
+ h3. buildr 1.4.5 (2011-02-20)
60
+
61
+ |_. Package |_. MD5 Checksum |_. PGP |
62
+ | "buildr-1.4.5.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5.gem | "71683a1a7d97bf6423c341c13150a61d":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.gem.asc |
63
+ | "buildr-1.4.5-x86-mswin32.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5-x86-mswin32.gem | "1d0cdbf7cb6202ea53f094fa2b4b658b":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-x86-mswin32.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-x86-mswin32.gem.asc |
64
+ | "buildr-1.4.5-java.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5-java.gem | "2e97b286a525638b5a003e211f05fdf9":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-java.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5-java.gem.asc |
65
+ | "buildr-1.4.5.tgz":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5.tgz | "c3b959b8da9722b8a1456a955c34d41d":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.tgz.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.tgz.asc |
66
+ | "buildr-1.4.5.zip":http://www.apache.org/dyn/closer.cgi/buildr/1.4.5/buildr-1.4.5.zip | "7c2b80e3b7802b16831718c2fa34f2a1":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.zip.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.5/buildr-1.4.5.zip.asc |
67
+
68
+ p>. ("Release signing keys":http://www.apache.org/dist/buildr/1.4.5/KEYS)
69
+
70
+
71
+ h3. buildr 1.4.4 (2010-11-16)
72
+
73
+ |_. Package |_. MD5 Checksum |_. PGP |
74
+ | "buildr-1.4.4-x86-mswin32.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.4/buildr-1.4.4-x86-mswin32.gem | "7d9cfb91a15dfcebc2abaa7f0cc18512":http://www.apache.org/dist/buildr/1.4.4/buildr-1.4.4-x86-mswin32.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.4/buildr-1.4.4-x86-mswin32.gem.asc |
75
+ | "buildr-1.4.4.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.4/buildr-1.4.4.gem | "581e7951c07607f0437a924ec131a706":http://www.apache.org/dist/buildr/1.4.4/buildr-1.4.4.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.4/buildr-1.4.4.gem.asc |
76
+ | "buildr-1.4.4-java.gem":http://www.apache.org/dyn/closer.cgi/buildr/1.4.4/buildr-1.4.4-java.gem | "0076cdb62e248b525d71916713f5b290":http://www.apache.org/dist/buildr/1.4.4/buildr-1.4.4-java.gem.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.4/buildr-1.4.4-java.gem.asc |
77
+ | "buildr-1.4.4.tgz":http://www.apache.org/dyn/closer.cgi/buildr/1.4.4/buildr-1.4.4.tgz | "246208815e2efc29fad0df1cee031830":http://www.apache.org/dist/buildr/1.4.4/buildr-1.4.4.tgz.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.4/buildr-1.4.4.tgz.asc |
78
+ | "buildr-1.4.4.zip":http://www.apache.org/dyn/closer.cgi/buildr/1.4.4/buildr-1.4.4.zip | "a932b66401102bf9814e77a3c5541d73":http://www.apache.org/dist/buildr/1.4.4/buildr-1.4.4.zip.md5 | "Sig":http://www.apache.org/dist/buildr/1.4.4/buildr-1.4.4.zip.asc |
79
+
80
+ p>. ("Release signing keys":http://www.apache.org/dist/buildr/1.4.4/KEYS)
81
+
82
+
23
83
  h3. buildr 1.4.3 (2010-10-15)
24
84
 
25
85
  |_. Package |_. MD5 Checksum |_. PGP |
data/doc/index.textile CHANGED
@@ -46,23 +46,14 @@ So let's get started. You can "read the documentation online":quick_start.html,
46
46
 
47
47
  h2(#news). What's New
48
48
 
49
- New in Buildr 1.4.2:
50
-
51
- * Added: BUILDR-212 Update support for SNAPSHOT artifacts
52
- * Added: BUILDR-465 Eclipse project names should be customizable
53
- * Added: BUILDR-493 Eclipse task should generate javadocpath
54
- * Added: BUILDR-509 Option to generate non-prefixed Eclipse project names
55
- * Added: BUILDR-510 Add support for trace categories: --trace=foo,bar
56
- * Change: BUILDR-484 Upgrade to Scala 2.8.0 (final) and associated dependencies (ScalaCheck 1.7, ScalaTest 1.2, Specs 1.6.5)
57
- * Change: BUILDR-487 package :sources should default to using .jar extension (instead of .zip)
58
- * Fixed: BUILDR-143 Upload to a file:// path needs ability to specify permissions
59
- * Fixed: BUILDR-144 Filter does not preserve file permissions
60
- * Fixed: BUILDR-203 Compiler guessing parses the source files.
61
- * Fixed: BUILDR-317 Contribution of the integration with the ecj compiler
62
- * And 50+ bug fixes !
49
+ New in Buildr 1.4.4 (Nov. 16th, 2010)
63
50
 
64
- See the "CHANGELOG":CHANGELOG for full details.
51
+ * Change: BUILDR-549 Upgrade to RJB 1.3.3 to address "Cannot create JVM" issue
52
+ with Java Update 3 on Mac OS X. Win32 platform upgraded to RJB 1.3.2.
53
+ * Change: RSpec gem dependency ~> 1.3.1
54
+ * Change: Upgrade to JtestR 0.6
65
55
 
56
+ See the "CHANGELOG":CHANGELOG for full details.
66
57
 
67
58
  h2(#notices). Credits & Notices
68
59
 
@@ -73,3 +64,6 @@ The Apache Software Foundation is a non-profit organization, consider "sponsorin
73
64
  "ColorCons":http://www.mouserunner.com/Spheres_ColoCons1_Free_Icons.html, copyright of Ken Saunders. "DejaVu fonts":http://dejavu.sourceforge.net, copyright of Bitstream, Inc.
74
65
 
75
66
  Community member quotes from a thread on "Stack Overflow":http://stackoverflow.com/questions/1015525/why-use-buildr-instead-of-ant-or-maven/1055864.
67
+
68
+ Developed with !http://www.jetbrains.com/ruby/features/ruby_banners/ruby1/ruby120x30_white.gif(Developed with RubyMine)!:http://www.jetbrains.com/ruby/features?utm_source=RubyMineUser&utm_medium=Banner&utm_campaign=RubyMine
69
+