vic-buildr 1.3.3 → 1.3.4

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 (98) hide show
  1. data/CHANGELOG +42 -11
  2. data/Rakefile +5 -3
  3. data/_buildr +9 -31
  4. data/addon/buildr/cobertura.rb +5 -218
  5. data/addon/buildr/drb.rb +281 -0
  6. data/addon/buildr/emma.rb +5 -220
  7. data/addon/buildr/nailgun.rb +94 -686
  8. data/bin/buildr +0 -9
  9. data/buildr.gemspec +6 -6
  10. data/doc/images/favicon.png +0 -0
  11. data/doc/pages/contributing.textile +6 -4
  12. data/doc/pages/download.textile +11 -0
  13. data/doc/pages/extending.textile +2 -2
  14. data/doc/pages/getting_started.textile +4 -4
  15. data/doc/pages/index.textile +8 -11
  16. data/doc/pages/more_stuff.textile +50 -22
  17. data/doc/pages/packaging.textile +1 -1
  18. data/doc/pages/projects.textile +2 -2
  19. data/doc/pages/settings_profiles.textile +2 -2
  20. data/doc/pages/testing.textile +1 -1
  21. data/doc/pages/whats_new.textile +12 -0
  22. data/doc/site.haml +1 -0
  23. data/lib/buildr.rb +2 -4
  24. data/lib/buildr/core.rb +2 -0
  25. data/lib/buildr/core/application.rb +304 -149
  26. data/lib/buildr/core/checks.rb +3 -131
  27. data/lib/buildr/core/common.rb +0 -4
  28. data/lib/buildr/core/compile.rb +1 -7
  29. data/lib/buildr/core/environment.rb +0 -3
  30. data/lib/buildr/core/filter.rb +7 -3
  31. data/lib/buildr/core/generate.rb +50 -52
  32. data/lib/buildr/core/help.rb +2 -1
  33. data/lib/buildr/core/osx.rb +49 -0
  34. data/lib/buildr/core/progressbar.rb +1 -1
  35. data/lib/buildr/core/project.rb +7 -9
  36. data/lib/buildr/core/test.rb +4 -4
  37. data/lib/buildr/core/transports.rb +13 -30
  38. data/lib/buildr/core/util.rb +8 -3
  39. data/lib/buildr/groovy/bdd.rb +1 -0
  40. data/lib/buildr/groovy/compiler.rb +1 -1
  41. data/lib/buildr/ide/eclipse.rb +30 -20
  42. data/lib/buildr/ide/idea.rb +3 -2
  43. data/lib/buildr/ide/idea7x.rb +4 -2
  44. data/lib/buildr/java/ant.rb +1 -1
  45. data/lib/buildr/java/bdd.rb +9 -5
  46. data/lib/buildr/java/cobertura.rb +236 -0
  47. data/lib/buildr/java/commands.rb +2 -1
  48. data/lib/buildr/java/emma.rb +238 -0
  49. data/lib/buildr/java/jtestr_runner.rb.erb +2 -0
  50. data/lib/buildr/java/packaging.rb +6 -2
  51. data/lib/buildr/java/pom.rb +0 -4
  52. data/lib/buildr/java/test_result.rb +45 -15
  53. data/lib/buildr/java/tests.rb +14 -9
  54. data/lib/buildr/packaging.rb +5 -2
  55. data/lib/buildr/packaging/archive.rb +488 -0
  56. data/lib/buildr/packaging/artifact.rb +36 -7
  57. data/lib/buildr/packaging/artifact_namespace.rb +2 -2
  58. data/lib/buildr/packaging/gems.rb +3 -3
  59. data/lib/buildr/packaging/package.rb +1 -1
  60. data/lib/buildr/packaging/tar.rb +85 -3
  61. data/lib/buildr/packaging/version_requirement.rb +172 -0
  62. data/lib/buildr/packaging/zip.rb +24 -682
  63. data/lib/buildr/packaging/ziptask.rb +313 -0
  64. data/lib/buildr/scala/compiler.rb +1 -1
  65. data/lib/buildr/scala/tests.rb +2 -2
  66. data/rakelib/apache.rake +58 -8
  67. data/rakelib/package.rake +4 -1
  68. data/rakelib/rspec.rake +2 -2
  69. data/rakelib/rubyforge.rake +6 -3
  70. data/rakelib/scm.rake +1 -1
  71. data/rakelib/setup.rake +0 -5
  72. data/rakelib/stage.rake +4 -1
  73. data/spec/addon/drb_spec.rb +328 -0
  74. data/spec/core/application_spec.rb +29 -22
  75. data/spec/core/build_spec.rb +8 -0
  76. data/spec/core/checks_spec.rb +293 -311
  77. data/spec/core/common_spec.rb +8 -2
  78. data/spec/core/compile_spec.rb +17 -1
  79. data/spec/core/generate_spec.rb +33 -0
  80. data/spec/core/project_spec.rb +18 -10
  81. data/spec/core/test_spec.rb +24 -1
  82. data/spec/ide/eclipse_spec.rb +96 -28
  83. data/spec/java/ant.rb +5 -0
  84. data/spec/java/bdd_spec.rb +4 -4
  85. data/spec/{addon → java}/cobertura_spec.rb +3 -3
  86. data/spec/{addon → java}/emma_spec.rb +3 -3
  87. data/spec/java/java_spec.rb +9 -1
  88. data/spec/java/packaging_spec.rb +19 -2
  89. data/spec/{addon → java}/test_coverage_spec.rb +7 -1
  90. data/spec/java/tests_spec.rb +5 -0
  91. data/spec/packaging/archive_spec.rb +1 -1
  92. data/spec/{core → packaging}/artifact_namespace_spec.rb +2 -2
  93. data/spec/packaging/artifact_spec.rb +46 -5
  94. data/spec/packaging/packaging_spec.rb +1 -1
  95. data/spec/sandbox.rb +16 -14
  96. data/spec/spec_helpers.rb +26 -3
  97. metadata +20 -11
  98. data/lib/buildr/core/application_cli.rb +0 -139
@@ -85,4 +85,12 @@ describe Java, '#tools_jar' do
85
85
  after do
86
86
  ENV['JAVA_HOME'] = @old_home
87
87
  end
88
- end
88
+ end
89
+
90
+
91
+ describe Java::JavaWrapper do
92
+ it 'should be removed in version 1.5 since it was deprecated in version 1.3' do
93
+ Buildr::VERSION.should < '1.5'
94
+ lambda { Java::JavaWrapper }.should_not raise_error
95
+ end
96
+ end
@@ -170,11 +170,28 @@ shared_examples_for 'package with manifest' do
170
170
  package_with_manifest 'MANIFEST.MF'
171
171
  inspect_manifest do |manifest|
172
172
  manifest.sections.size.should be(1)
173
- manifest.main['Manifest-Version'].should eql('1.0')
174
173
  manifest.main['Meta'].should eql('data')
175
174
  end
176
175
  end
177
176
 
177
+ it 'should not add manifest version twice' do
178
+ write 'MANIFEST.MF', 'Manifest-Version: 1.9'
179
+ package_with_manifest 'MANIFEST.MF'
180
+ package ||= project('foo').package(@packaging)
181
+ package.invoke
182
+ Zip::ZipFile.open(package.to_s) do |zip|
183
+ zip.read('META-INF/MANIFEST.MF').scan(/(Manifest-Version)/m).size.should == 1
184
+ end
185
+ end
186
+
187
+ it 'should give precedence to version specified in manifest file' do
188
+ write 'MANIFEST.MF', 'Manifest-Version: 1.9'
189
+ package_with_manifest 'MANIFEST.MF'
190
+ inspect_manifest do |manifest|
191
+ manifest.main['Manifest-Version'].should == '1.9'
192
+ end
193
+ end
194
+
178
195
  it 'should create manifest from task' do
179
196
  file 'MANIFEST.MF' do |task|
180
197
  write task.to_s, 'Meta: data'
@@ -709,7 +726,7 @@ describe Packaging, 'ear' do
709
726
  inspect_ear { |files| files.should include('ejb/foo-1.0.jar') }
710
727
  end
711
728
 
712
- it 'should accept component and its type as type=>artiract' do
729
+ it 'should accept component and its type as type=>artifact' do
713
730
  define 'foo', :version=>'1.0' do
714
731
  package(:ear).add :ejb=>package(:jar)
715
732
  end
@@ -178,7 +178,7 @@ describe 'test coverage tool', :shared=>true do
178
178
  write 'src/main/java/Foo.java', 'public class Foo {}'
179
179
  write 'bar/src/main/java/Bar.java', 'public class Bar {}'
180
180
  write_test :for=>'Bar', :in=>'bar/src/test/java'
181
- define('foo') { define('bar')}
181
+ define('foo') { define('bar') }
182
182
  end
183
183
 
184
184
  it 'should have a default target' do
@@ -206,6 +206,12 @@ describe 'test coverage tool', :shared=>true do
206
206
  htlm_report_contents = Dir[File.join(@tool_module.report_to(:html), '**/*.html')].map{|path|File.open(path).read}.join
207
207
  htlm_report_contents.should =~ /TOKEN/
208
208
  end
209
+
210
+ it 'should handle gracefully a project with no source' do
211
+ define 'baz', :base_dir=>'baz'
212
+ task("#{toolname}:html").invoke
213
+ lambda { task("#{toolname}:html").invoke }.should_not raise_error
214
+ end
209
215
  end
210
216
  end
211
217
 
@@ -40,6 +40,11 @@ describe Buildr::JUnit do
40
40
  project('foo').test.dependencies.should include(artifact("junit:junit:jar:#{JUnit.version}"))
41
41
  end
42
42
 
43
+ it 'should have REQUIRES up to version 1.5 since it was deprecated in 1.3.3' do
44
+ Buildr::VERSION.should < '1.5'
45
+ lambda { JUnit::REQUIRES }.should_not raise_error
46
+ end
47
+
43
48
  it 'should pick JUnit version from junit build settings' do
44
49
  Buildr::JUnit.instance_eval { @dependencies = nil }
45
50
  write 'build.yaml', 'junit: 1.2.3'
@@ -80,7 +80,7 @@ describe 'ArchiveTask', :shared=>true do
80
80
  it 'should invoke and archive file tasks' do
81
81
  file = file('included') { write 'included' }
82
82
  lambda { archive(@archive).include(file).invoke }.should change { File.exist?(file.to_s) }.to(true)
83
- inspect_archive.should include('included')
83
+ inspect_archive.keys.should include('included')
84
84
  end
85
85
 
86
86
  it 'should include entry for directory' do
@@ -464,7 +464,7 @@ describe Buildr do
464
464
  artifact_ns.use 'some:other:jar:1.0'
465
465
  artifact_ns.use 'bat:man:jar:1.0'
466
466
  compile.with :cool, :other, :'bat:man:jar'
467
- compile.classpath.map(&:to_spec).should include('cool:aid:jar:1.0', 'some:other:jar:1.0', 'bat:man:jar:1.0')
467
+ compile.dependencies.map(&:to_spec).should include('cool:aid:jar:1.0', 'some:other:jar:1.0', 'bat:man:jar:1.0')
468
468
  end
469
469
  end
470
470
 
@@ -472,7 +472,7 @@ describe Buildr do
472
472
  artifact_ns(:moo).muu = 'moo:muu:jar:1.0'
473
473
  define 'foo' do
474
474
  compile.with artifact_ns(:moo)
475
- compile.classpath.map(&:to_spec).should include('moo:muu:jar:1.0')
475
+ compile.dependencies.map(&:to_spec).should include('moo:muu:jar:1.0')
476
476
  end
477
477
  end
478
478
  end
@@ -71,10 +71,14 @@ describe Artifact do
71
71
  @artifact.pom.to_hash.should == @artifact.to_hash.merge(:type=>:pom)
72
72
  end
73
73
 
74
- it 'should have one artifact for all classifiers' do
74
+ it 'should have one POM artifact for all classifiers' do
75
75
  @classified.pom.to_hash.should == @classified.to_hash.merge(:type=>:pom).except(:classifier)
76
76
  end
77
-
77
+
78
+ it 'should have associated sources artifact' do
79
+ @artifact.sources_artifact.to_hash.should == @artifact.to_hash.merge(:classifier=>'sources')
80
+ end
81
+
78
82
  it 'should download file if file does not exist' do
79
83
  lambda { @artifact.invoke }.should raise_error(Exception, /No remote repositories/)
80
84
  lambda { @classified.invoke }.should raise_error(Exception, /No remote repositories/)
@@ -430,7 +434,7 @@ describe Buildr, '#artifact' do
430
434
  artifacts:
431
435
  j2ee: geronimo-spec:geronimo-spec-j2ee:jar:1.4-rc4
432
436
  YAML
433
- Buildr.application.send :load_artifacts
437
+ Buildr.application.send(:load_artifact_ns)
434
438
  artifact(:j2ee).to_s.pathmap('%f').should == 'geronimo-spec-j2ee-1.4-rc4.jar'
435
439
  end
436
440
  end
@@ -513,7 +517,7 @@ describe Buildr, '#group' do
513
517
 
514
518
  end
515
519
 
516
- describe Builder, '#install' do
520
+ describe Buildr, '#install' do
517
521
  before do
518
522
  @spec = 'group:id:jar:1.0'
519
523
  write @file = 'test.jar'
@@ -542,7 +546,7 @@ describe Builder, '#install' do
542
546
  end
543
547
 
544
548
 
545
- describe Builder, '#upload' do
549
+ describe Buildr, '#upload' do
546
550
  before do
547
551
  @spec = 'group:id:jar:1.0'
548
552
  write @file = 'test.jar'
@@ -638,6 +642,43 @@ describe Rake::Task, ' artifacts' do
638
642
  end
639
643
 
640
644
 
645
+ describe Rake::Task, ' artifacts:sources' do
646
+
647
+ before do
648
+ task('artifacts:sources').clear
649
+ repositories.remote = 'http://example.com'
650
+ end
651
+
652
+ it 'should download sources for all specified artifacts' do
653
+ artifact 'group:id:jar:1.0'
654
+ URI.should_receive(:download).any_number_of_times.and_return { |uri, target| write target }
655
+ lambda { task('artifacts:sources').invoke }.should change { File.exist?('home/.m2/repository/group/id/1.0/id-1.0-sources.jar') }.to(true)
656
+ end
657
+
658
+ it "should not try to download sources for the project's artifacts" do
659
+ define('foo', :version=>'1.0') { package(:jar) }
660
+ URI.should_not_receive(:download)
661
+ task('artifacts:sources').invoke
662
+ end
663
+
664
+ describe 'when the source artifact does not exist' do
665
+
666
+ before do
667
+ artifact 'group:id:jar:1.0'
668
+ URI.should_receive(:download).any_number_of_times.and_raise(URI::NotFoundError)
669
+ end
670
+
671
+ it 'should not fail' do
672
+ lambda { task('artifacts:sources').invoke }.should_not raise_error
673
+ end
674
+
675
+ it 'should inform the user' do
676
+ lambda { task('artifacts:sources').invoke }.should show_info('Failed to download group:id:jar:sources:1.0. Skipping it.')
677
+ end
678
+ end
679
+ end
680
+
681
+
641
682
  describe Buildr, '#transitive' do
642
683
  before do
643
684
  repositories.remote = 'http://example.com'
@@ -75,7 +75,7 @@ describe Project, '#package' do
75
75
  end
76
76
  end
77
77
 
78
- it 'should default to composed it for nested projects' do
78
+ it 'should default to composed id for nested projects' do
79
79
  define('foo', :version=>'1.0') do
80
80
  define 'bar' do
81
81
  package(:jar).id.should eql('foo-bar')
data/spec/sandbox.rb CHANGED
@@ -21,12 +21,13 @@ Buildr.application.instance_eval { @rakefile = File.expand_path('buildfile') }
21
21
  repositories.remote << 'http://repo1.maven.org/maven2'
22
22
  repositories.remote << 'http://scala-tools.org/repo-releases'
23
23
 
24
+ # Add a 'require' here only for optional extensions, not for extensions that should be loaded by default.
24
25
  require 'buildr/groovy'
25
- require 'buildr/scala'
26
26
 
27
27
  Java.load # Anything added to the classpath.
28
- task('buildr:scala:download').invoke
29
- artifacts(TestFramework.frameworks.map(&:dependencies).flatten, JUnit.ant_taskdef).each { |a| file(a).invoke }
28
+ artifacts(TestFramework.frameworks.map(&:dependencies).flatten, JUnit.ant_taskdef).each do |path|
29
+ file(path).invoke
30
+ end
30
31
 
31
32
  ENV['HOME'] = File.expand_path('tmp/home')
32
33
 
@@ -42,13 +43,13 @@ module Sandbox
42
43
  spec.after(:each) { reset }
43
44
  end
44
45
 
45
- # Require an addon without letting its callbacks pollute the Project class.
46
- def require_addon addon_require_path
47
- project_callbacks_without_addon = Project.class_eval { @callbacks }.dup
46
+ # Require an optional extension without letting its callbacks pollute the Project class.
47
+ def require_optional_extension(extension_require_path)
48
+ project_callbacks_without_extension = Project.class_eval { @callbacks }.dup
48
49
  begin
49
- require addon_require_path
50
+ require extension_require_path
50
51
  ensure
51
- Project.class_eval { @callbacks = project_callbacks_without_addon }
52
+ Project.class_eval { @callbacks = project_callbacks_without_extension }
52
53
  end
53
54
  end
54
55
  end
@@ -72,17 +73,18 @@ module Sandbox
72
73
  # for projects, compilation. We need a place that does not depend
73
74
  # on the current directory.
74
75
  @_sandbox[:original_dir] = Dir.pwd
75
- temp = File.join(File.dirname(__FILE__), '../tmp')
76
- FileUtils.mkpath temp
77
- Dir.chdir temp
76
+ @temp = File.join(File.dirname(__FILE__), '../tmp')
77
+ FileUtils.mkpath @temp
78
+ Dir.chdir @temp
78
79
 
80
+ ARGV.clear
79
81
  Buildr.application = Buildr::Application.new
80
82
  Sandbox.tasks.each { |block| block.call }
81
83
  Buildr.application.instance_variable_set :@rules, Sandbox.rules.clone
82
84
  Buildr.application.instance_eval { @rakefile = File.expand_path('buildfile') }
83
85
 
84
86
  @_sandbox[:load_path] = $LOAD_PATH.clone
85
- @_sandbox[:loaded_features] = $LOADED_FEATURES.clone
87
+ #@_sandbox[:loaded_features] = $LOADED_FEATURES.clone
86
88
 
87
89
  # Later on we'll want to lose all the on_define created during the test.
88
90
  @_sandbox[:on_define] = Project.class_eval { (@on_define || []).dup }
@@ -95,6 +97,7 @@ module Sandbox
95
97
  @_sandbox[:artifacts] = Artifact.class_eval { @artifacts }.clone
96
98
  Buildr.repositories.local = File.expand_path('repository')
97
99
  ENV['HOME'] = File.expand_path('home')
100
+ ENV['BUILDR_ENV'] = 'development'
98
101
 
99
102
  @_sandbox[:env_keys] = ENV.keys
100
103
  ['DEBUG', 'TEST', 'HTTP_PROXY', 'USER'].each { |k| ENV.delete(k) ; ENV.delete(k.downcase) }
@@ -121,8 +124,7 @@ module Sandbox
121
124
  Layout.default = @_sandbox[:layout].clone
122
125
 
123
126
  $LOAD_PATH.replace @_sandbox[:load_path]
124
- $LOADED_FEATURES.replace @_sandbox[:loaded_features]
125
- FileUtils.rm_rf Dir.pwd
127
+ FileUtils.rm_rf @temp
126
128
 
127
129
  # Get rid of all artifacts.
128
130
  @_sandbox[:artifacts].tap { |artifacts| Artifact.class_eval { @artifacts = artifacts } }
data/spec/spec_helpers.rb CHANGED
@@ -19,7 +19,23 @@
19
19
  unless defined?(SpecHelpers)
20
20
 
21
21
  require 'rubygems'
22
- $LOAD_PATH.unshift File.expand_path('../lib', File.dirname(__FILE__)), File.expand_path('../addon', File.dirname(__FILE__))
22
+
23
+ # For testing we use the gem requirements specified on the buildr.gemspec
24
+ spec = Gem::Specification.load(File.expand_path('../buildr.gemspec', File.dirname(__FILE__)))
25
+ spec.dependencies.each { |dep| gem dep.name, dep.version_requirements.to_s }
26
+
27
+ # Make sure to load from these paths first, we don't want to load any
28
+ # code from Gem library.
29
+ $LOAD_PATH.unshift File.expand_path('../lib', File.dirname(__FILE__)),
30
+ File.expand_path('../addon', File.dirname(__FILE__))
31
+
32
+ # Buildr uses autoload extensively, but autoload when running specs creates
33
+ # a problem -- we sandbox $LOADED_FEATURES, so we endup autoloading the same
34
+ # module twice. This turns autoload into a require, which is not the right
35
+ # thing, but will do for now.
36
+ def autoload(symbol, path)
37
+ require path
38
+ end
23
39
  require 'buildr'
24
40
 
25
41
  require File.expand_path('sandbox', File.dirname(__FILE__))
@@ -28,7 +44,7 @@ unless defined?(SpecHelpers)
28
44
 
29
45
  include Checks::Matchers
30
46
 
31
- [:info, :warn, :error].each do |severity|
47
+ [:info, :warn, :error, :puts].each do |severity|
32
48
  ::Object.class_eval do
33
49
  define_method severity do |message|
34
50
  $messages ||= {}
@@ -74,7 +90,7 @@ unless defined?(SpecHelpers)
74
90
  MessageWithSeverityMatcher.new :info, message
75
91
  end
76
92
 
77
- # Tests if a warning was issued. You can use a string or regular expression.
93
+ # Test if a warning was shown. You can use a string or regular expression.
78
94
  #
79
95
  # For example:
80
96
  # lambda { warn 'ze test' }.should show_warning(/ze test/)
@@ -90,6 +106,13 @@ unless defined?(SpecHelpers)
90
106
  MessageWithSeverityMatcher.new :error, message
91
107
  end
92
108
 
109
+ # Test if any message was shown (puts). You can use a string or regular expression.
110
+ #
111
+ # For example:
112
+ # lambda { puts 'ze test' }.should show(/ze test/)
113
+ def show(message)
114
+ MessageWithSeverityMatcher.new :puts, message
115
+ end
93
116
 
94
117
  class ::Rake::Task
95
118
  alias :execute_without_a_record :execute
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vic-buildr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.3
4
+ version: 1.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Apache Buildr
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-08-13 00:00:00 -07:00
12
+ date: 2008-10-27 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -19,7 +19,7 @@ dependencies:
19
19
  requirements:
20
20
  - - "="
21
21
  - !ruby/object:Gem::Version
22
- version: 0.8.1
22
+ version: 0.8.3
23
23
  version:
24
24
  - !ruby/object:Gem::Dependency
25
25
  name: builder
@@ -73,7 +73,7 @@ dependencies:
73
73
  requirements:
74
74
  - - "="
75
75
  - !ruby/object:Gem::Version
76
- version: 1.0.0
76
+ version: 1.0.1
77
77
  version:
78
78
  - !ruby/object:Gem::Dependency
79
79
  name: hoe
@@ -82,7 +82,7 @@ dependencies:
82
82
  requirements:
83
83
  - - "="
84
84
  - !ruby/object:Gem::Version
85
- version: 1.7.0
85
+ version: 1.8.1
86
86
  version:
87
87
  - !ruby/object:Gem::Dependency
88
88
  name: rjb
@@ -109,7 +109,7 @@ dependencies:
109
109
  requirements:
110
110
  - - "="
111
111
  - !ruby/object:Gem::Version
112
- version: 1.1.5
112
+ version: 1.1.11
113
113
  version:
114
114
  - !ruby/object:Gem::Dependency
115
115
  name: xml-simple
@@ -156,7 +156,7 @@ files:
156
156
  - lib/buildr/core/filter.rb
157
157
  - lib/buildr/core/compile.rb
158
158
  - lib/buildr/core/test.rb
159
- - lib/buildr/core/application_cli.rb
159
+ - lib/buildr/core/osx.rb
160
160
  - lib/buildr/core/help.rb
161
161
  - lib/buildr/core/project.rb
162
162
  - lib/buildr/core/checks.rb
@@ -172,10 +172,12 @@ files:
172
172
  - lib/buildr/java/org/apache/buildr/JavaTestFilter.class
173
173
  - lib/buildr/java/org/apache/buildr/JavaTestFilter.java
174
174
  - lib/buildr/java/packaging.rb
175
+ - lib/buildr/java/cobertura.rb
175
176
  - lib/buildr/java/commands.rb
176
177
  - lib/buildr/java/jruby.rb
177
178
  - lib/buildr/java/jtestr_runner.rb.erb
178
179
  - lib/buildr/java/compiler.rb
180
+ - lib/buildr/java/emma.rb
179
181
  - lib/buildr/java/version_requirement.rb
180
182
  - lib/buildr/java/tests.rb
181
183
  - lib/buildr/java/deprecated.rb
@@ -198,8 +200,11 @@ files:
198
200
  - lib/buildr/resources
199
201
  - lib/buildr/resources/buildr.icns
200
202
  - lib/buildr/packaging
203
+ - lib/buildr/packaging/ziptask.rb
201
204
  - lib/buildr/packaging/artifact_search.rb
202
205
  - lib/buildr/packaging/artifact_namespace.rb
206
+ - lib/buildr/packaging/version_requirement.rb
207
+ - lib/buildr/packaging/archive.rb
203
208
  - lib/buildr/packaging/gems.rb
204
209
  - lib/buildr/packaging/tar.rb
205
210
  - lib/buildr/packaging/zip.rb
@@ -226,6 +231,7 @@ files:
226
231
  - addon/buildr/jetty.rb
227
232
  - addon/buildr/emma.rb
228
233
  - addon/buildr/xmlbeans.rb
234
+ - addon/buildr/drb.rb
229
235
  - addon/buildr/openjpa.rb
230
236
  - addon/buildr/javacc.rb
231
237
  - addon/buildr/jdepend.rb
@@ -260,6 +266,7 @@ files:
260
266
  - doc/print.toc.yaml
261
267
  - doc/site.toc.yaml
262
268
  - doc/images
269
+ - doc/images/favicon.png
263
270
  - doc/images/note.png
264
271
  - doc/images/apache-incubator-logo.png
265
272
  - doc/images/tip.png
@@ -273,8 +280,8 @@ files:
273
280
  - spec/ide
274
281
  - spec/ide/eclipse_spec.rb
275
282
  - spec/core
276
- - spec/core/artifact_namespace_spec.rb
277
283
  - spec/core/build_spec.rb
284
+ - spec/core/generate_spec.rb
278
285
  - spec/core/test_spec.rb
279
286
  - spec/core/compile_spec.rb
280
287
  - spec/core/checks_spec.rb
@@ -284,15 +291,16 @@ files:
284
291
  - spec/core/project_spec.rb
285
292
  - spec/java
286
293
  - spec/java/compiler_spec.rb
294
+ - spec/java/test_coverage_spec.rb
287
295
  - spec/java/tests_spec.rb
288
296
  - spec/java/packaging_spec.rb
289
297
  - spec/java/ant.rb
298
+ - spec/java/emma_spec.rb
290
299
  - spec/java/java_spec.rb
300
+ - spec/java/cobertura_spec.rb
291
301
  - spec/java/bdd_spec.rb
292
302
  - spec/addon
293
- - spec/addon/test_coverage_spec.rb
294
- - spec/addon/emma_spec.rb
295
- - spec/addon/cobertura_spec.rb
303
+ - spec/addon/drb_spec.rb
296
304
  - spec/scala
297
305
  - spec/scala/compiler_spec.rb
298
306
  - spec/scala/tests_spec.rb
@@ -303,6 +311,7 @@ files:
303
311
  - spec/groovy/bdd_spec.rb
304
312
  - spec/version_requirement_spec.rb
305
313
  - spec/packaging
314
+ - spec/packaging/artifact_namespace_spec.rb
306
315
  - spec/packaging/artifact_spec.rb
307
316
  - spec/packaging/packaging_spec.rb
308
317
  - spec/packaging/packaging_helper.rb