buildr 1.4.11-java → 1.4.12-java

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 (79) hide show
  1. data/CHANGELOG +22 -0
  2. data/README.rdoc +2 -0
  3. data/addon/buildr/checkstyle.rb +1 -1
  4. data/addon/buildr/gwt.rb +127 -82
  5. data/addon/buildr/wsgen.rb +19 -1
  6. data/buildr.gemspec +3 -1
  7. data/doc/_layouts/default.html +1 -1
  8. data/doc/download.textile +18 -6
  9. data/doc/index.textile +9 -18
  10. data/lib/buildr.rb +1 -0
  11. data/lib/buildr/clojure.rb +1 -1
  12. data/lib/buildr/clojure/shell.rb +1 -1
  13. data/lib/buildr/core/application.rb +3 -2
  14. data/lib/buildr/core/build.rb +2 -3
  15. data/lib/buildr/core/cc.rb +1 -1
  16. data/lib/buildr/core/checks.rb +2 -3
  17. data/lib/buildr/core/common.rb +1 -1
  18. data/lib/buildr/core/compile.rb +1 -1
  19. data/lib/buildr/core/doc.rb +2 -3
  20. data/lib/buildr/core/environment.rb +1 -1
  21. data/lib/buildr/core/filter.rb +1 -1
  22. data/lib/buildr/core/generate.rb +1 -1
  23. data/lib/buildr/core/help.rb +1 -1
  24. data/lib/buildr/core/jrebel.rb +1 -1
  25. data/lib/buildr/core/progressbar.rb +1 -1
  26. data/lib/buildr/core/project.rb +1 -1
  27. data/lib/buildr/core/run.rb +2 -2
  28. data/lib/buildr/core/shell.rb +2 -3
  29. data/lib/buildr/core/test.rb +1 -1
  30. data/lib/buildr/core/util.rb +1 -1
  31. data/lib/buildr/groovy/bdd.rb +1 -1
  32. data/lib/buildr/groovy/compiler.rb +1 -0
  33. data/lib/buildr/groovy/doc.rb +4 -4
  34. data/lib/buildr/groovy/shell.rb +2 -2
  35. data/lib/buildr/ide/eclipse.rb +1 -1
  36. data/lib/buildr/ide/idea.rb +45 -14
  37. data/lib/buildr/java/ant.rb +1 -1
  38. data/lib/buildr/java/bdd.rb +1 -1
  39. data/lib/buildr/java/cobertura.rb +1 -1
  40. data/lib/buildr/java/compiler.rb +3 -3
  41. data/lib/buildr/java/deprecated.rb +1 -1
  42. data/lib/buildr/java/doc.rb +3 -3
  43. data/lib/buildr/java/ecj.rb +2 -2
  44. data/lib/buildr/java/emma.rb +1 -1
  45. data/lib/buildr/java/external.rb +2 -2
  46. data/lib/buildr/java/packaging.rb +2 -3
  47. data/lib/buildr/java/pom.rb +1 -0
  48. data/lib/buildr/java/rjb.rb +1 -2
  49. data/lib/buildr/java/test_result.rb +1 -1
  50. data/lib/buildr/java/tests.rb +1 -1
  51. data/lib/buildr/java/version_requirement.rb +1 -1
  52. data/lib/buildr/packaging/archive.rb +2 -2
  53. data/lib/buildr/packaging/artifact.rb +1 -1
  54. data/lib/buildr/packaging/artifact_namespace.rb +1 -1
  55. data/lib/buildr/packaging/artifact_search.rb +1 -2
  56. data/lib/buildr/packaging/gems.rb +1 -1
  57. data/lib/buildr/packaging/package.rb +1 -1
  58. data/lib/buildr/packaging/tar.rb +1 -1
  59. data/lib/buildr/packaging/test_jar.rb +32 -0
  60. data/lib/buildr/packaging/version_requirement.rb +1 -1
  61. data/lib/buildr/packaging/zip.rb +4 -1
  62. data/lib/buildr/packaging/ziptask.rb +1 -1
  63. data/lib/buildr/run.rb +1 -1
  64. data/lib/buildr/scala/bdd.rb +2 -2
  65. data/lib/buildr/scala/compiler.rb +2 -1
  66. data/lib/buildr/scala/doc.rb +5 -4
  67. data/lib/buildr/scala/shell.rb +2 -2
  68. data/lib/buildr/scala/tests.rb +2 -2
  69. data/lib/buildr/shell.rb +2 -2
  70. data/lib/buildr/version.rb +2 -2
  71. data/rakelib/doc.rake +4 -5
  72. data/rakelib/stage.rake +1 -1
  73. data/spec/core/build_spec.rb +15 -6
  74. data/spec/core/common_spec.rb +0 -1
  75. data/spec/core/compile_spec.rb +24 -17
  76. data/spec/java/bdd_spec.rb +23 -27
  77. data/spec/java/packaging_spec.rb +35 -0
  78. data/spec/scala/compiler_spec.rb +8 -6
  79. metadata +6 -18
@@ -13,7 +13,7 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr
16
+ module Buildr #:nodoc:
17
17
 
18
18
  # Provides the <code>emma:html</code> and <code>emma:xml</code> tasks.
19
19
  # Require explicitly using <code>require "buildr/emma"</code>.
@@ -13,8 +13,8 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr
17
- module Compiler
16
+ module Buildr #:nodoc:
17
+ module Compiler #:nodoc:
18
18
  class ExternalJavac< Buildr::Compiler::Javac
19
19
 
20
20
  OPTIONS = [:jvm, :warnings, :debug, :deprecation, :source, :target, :lint, :other]
@@ -13,7 +13,7 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr
16
+ module Buildr #:nodoc:
17
17
  module Packaging #:nodoc:
18
18
 
19
19
  # Adds packaging for Java projects: JAR, WAR, AAR, EAR, Javadoc.
@@ -724,7 +724,6 @@ module Buildr
724
724
  end
725
725
  end
726
726
 
727
-
728
- class Buildr::Project
727
+ class Buildr::Project #:nodoc:
729
728
  include Buildr::Packaging::Java
730
729
  end
@@ -13,6 +13,7 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
+ #
16
17
  module Buildr
17
18
  class POM
18
19
 
@@ -145,8 +145,7 @@ module Java
145
145
 
146
146
  end
147
147
 
148
-
149
- class Array
148
+ class Array #:nodoc:
150
149
  # Converts a Ruby array into a typed Java array, argument specifies the element type.
151
150
  # This is necessary for JRuby and causes no harm on RJB.
152
151
  def to_java(cls)
@@ -18,7 +18,7 @@ require 'yaml'
18
18
  require 'rspec/core/formatters/base_formatter'
19
19
 
20
20
  module Buildr #:nodoc:
21
- module TestFramework
21
+ module TestFramework #:nodoc:
22
22
 
23
23
  # A class used by buildr for jruby based frameworks, so that buildr can know
24
24
  # which tests succeeded/failed.
@@ -14,7 +14,7 @@
14
14
  # License for the specific language governing permissions and limitations under
15
15
  # the License.
16
16
 
17
- module Buildr
17
+ module Buildr #:nodoc:
18
18
 
19
19
  class TestFramework::Java < TestFramework::Base
20
20
 
@@ -14,7 +14,7 @@
14
14
  # the License.
15
15
 
16
16
 
17
- module Buildr
17
+ module Buildr #:nodoc:
18
18
 
19
19
  #
20
20
  # See ArtifactNamespace#need
@@ -13,7 +13,7 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr
16
+ module Buildr #:nodoc:
17
17
 
18
18
  # Base class for ZipTask, TarTask and other archives.
19
19
  class ArchiveTask < Rake::FileTask
@@ -186,7 +186,7 @@ module Buildr
186
186
  when ArtifactNamespace
187
187
  set |= file.artifacts
188
188
  when Symbol, Hash
189
- set |= [artifact(file)]
189
+ set |= [Buildr.artifact(file)]
190
190
  when /([^:]+:){2,4}/ # A spec as opposed to a file name.
191
191
  set |= [Buildr.artifact(file)]
192
192
  when Project
@@ -13,7 +13,7 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr
16
+ module Buildr #:nodoc:
17
17
 
18
18
  desc 'Download all artifacts'
19
19
  task 'artifacts'
@@ -13,7 +13,7 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr
16
+ module Buildr #:nodoc:
17
17
 
18
18
  # An ArtifactNamespace is a hierarchical dictionary used to manage ArtifactRequirements.
19
19
  # It can be used to have different artifact versions per project
@@ -13,10 +13,9 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
-
17
16
  autoload :Hpricot, 'hpricot'
18
17
 
19
- module Buildr
18
+ module Buildr #:nodoc:
20
19
 
21
20
  # Search best artifact version from remote repositories
22
21
  module ArtifactSearch
@@ -16,7 +16,7 @@
16
16
  autoload :RubyForge, 'rubyforge'
17
17
  Gem.autoload :Package, 'rubygems/package'
18
18
 
19
- module Buildr
19
+ module Buildr #:nodoc:
20
20
 
21
21
  class PackageGemTask < ArchiveTask
22
22
 
@@ -13,7 +13,7 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr
16
+ module Buildr #:nodoc:
17
17
  # Methods added to Project to support packaging and tasks for packaging,
18
18
  # installing and uploading packages.
19
19
  module Package
@@ -16,7 +16,7 @@
16
16
  autoload :Archive, 'archive/tar/minitar'
17
17
  autoload :Zlib, 'zlib'
18
18
 
19
- module Buildr
19
+ module Buildr #:nodoc:
20
20
 
21
21
  # The TarTask creates a new Tar file. You can include any number of files and and directories,
22
22
  # use exclusion patterns, and include files into specific directories.
@@ -0,0 +1,32 @@
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 #:nodoc:
17
+ module PackageAsTestJar
18
+ def package_as_test_jar_spec(spec) #:nodoc:
19
+ spec.merge(:type => :jar, :classifier => 'test-jar')
20
+ end
21
+
22
+ def package_as_test_jar(file_name) #:nodoc:
23
+ ZipTask.define_task(file_name).tap do |zip|
24
+ zip.include :from => [test.compile.target, test.resources.target].compact
25
+ end
26
+ end
27
+ end
28
+ end
29
+
30
+ class Buildr::Project
31
+ include Buildr::PackageAsTestJar
32
+ end
@@ -30,7 +30,7 @@ unless Gem::Version.new(0).respond_to?(:version=)
30
30
  end
31
31
  end
32
32
 
33
- module Buildr
33
+ module Buildr #:nodoc:
34
34
 
35
35
  #
36
36
  # See ArtifactNamespace#need
@@ -176,8 +176,11 @@ module Zip #:nodoc:
176
176
  end
177
177
 
178
178
  class ZipEntrySet
179
+ alias_method :original_push, :"<<"
180
+ alias_method :push, :"<<"
181
+
179
182
  def <<(entry)
180
- @entrySet[entry.name.to_s] = entry if entry != nil
183
+ original_push(entry) if entry != nil
181
184
  end
182
185
  end
183
186
  end
@@ -13,7 +13,7 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr
16
+ module Buildr #:nodoc:
17
17
 
18
18
  # The ZipTask creates a new Zip file. You can include any number of files and and directories,
19
19
  # use exclusion patterns, and include files into specific directories.
data/lib/buildr/run.rb CHANGED
@@ -13,7 +13,7 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr
16
+ module Buildr #:nodoc:
17
17
  module Run
18
18
  include Extension
19
19
 
@@ -13,7 +13,7 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr::Scala
16
+ module Buildr::Scala #:nodoc:
17
17
 
18
18
  # Specs is a Scala based BDD framework.
19
19
  # To use in your project:
@@ -247,7 +247,7 @@ module Buildr::Scala
247
247
  end
248
248
 
249
249
  # Backwards compatibility stuff. Remove in 1.5.
250
- module Buildr
250
+ module Buildr #:nodoc:
251
251
  ScalaSpecs = Scala::Specs
252
252
  end
253
253
 
@@ -13,6 +13,7 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
+ # The Scala Module
16
17
  module Buildr::Scala
17
18
  DEFAULT_VERSION = '2.9.2'
18
19
 
@@ -381,7 +382,7 @@ end
381
382
  # projects that mix Scala and Java code by spotting Scala code first.
382
383
  Buildr::Compiler.compilers.unshift Buildr::Scala::Scalac
383
384
 
384
- class Buildr::Project
385
+ class Buildr::Project #:nodoc:
385
386
  include Buildr::Scala::ProjectExtension
386
387
  end
387
388
 
@@ -13,8 +13,8 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr
17
- module Doc
16
+ module Buildr #:nodoc:
17
+ module Doc #:nodoc:
18
18
 
19
19
  module ScaladocDefaults
20
20
  include Extension
@@ -88,12 +88,13 @@ module Buildr
88
88
  when Buildr::Scala.version?("2.7")
89
89
  [ "org.scala-tools:vscaladoc:jar:#{VERSION}" ]
90
90
  else
91
+ warn "VScalaDoc not supported for Scala 2.8+"
91
92
  []
92
93
  end
93
94
  end
94
95
  end
95
96
 
96
- Java.classpath << dependencies
97
+ Java.classpath << lambda { dependencies }
97
98
 
98
99
  specify :language => :scala, :source_ext => 'scala'
99
100
 
@@ -145,7 +146,7 @@ module Buildr
145
146
  end
146
147
  end
147
148
 
148
- class Project
149
+ class Project #:nodoc:
149
150
  include ScaladocDefaults
150
151
  include Packaging::Scala
151
152
  end
@@ -13,8 +13,8 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr
17
- module Scala
16
+ module Buildr #:nodoc:
17
+ module Scala #:nodoc:
18
18
  class ScalaShell < Buildr::Shell::Base
19
19
  include Buildr::JRebel
20
20
 
@@ -13,7 +13,7 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr::Scala
16
+ module Buildr::Scala#:nodoc:
17
17
 
18
18
  # Mockito is available when running ScalaTest
19
19
  module Mockito
@@ -212,7 +212,7 @@ end
212
212
 
213
213
 
214
214
  # Backwards compatibility stuff. Remove in 1.5.
215
- module Buildr
215
+ module Buildr#:nodoc:
216
216
  ScalaCheck = Scala::Check
217
217
  ScalaTest = Scala::ScalaTest
218
218
  end
data/lib/buildr/shell.rb CHANGED
@@ -13,7 +13,7 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr
16
+ module Buildr #:nodoc:
17
17
  module Shell
18
18
  include Extension
19
19
 
@@ -178,7 +178,7 @@ module Buildr
178
178
  end
179
179
  end
180
180
 
181
- class Project
181
+ class Project #:nodoc:
182
182
  include Shell
183
183
  end
184
184
  end
@@ -13,6 +13,6 @@
13
13
  # License for the specific language governing permissions and limitations under
14
14
  # the License.
15
15
 
16
- module Buildr
17
- VERSION = '1.4.11'.freeze
16
+ module Buildr #:nodoc:
17
+ VERSION = '1.4.12'.freeze
18
18
  end
data/rakelib/doc.rake CHANGED
@@ -91,11 +91,10 @@ end
91
91
 
92
92
  # Publish prerequisites to Web site.
93
93
  desc "Publish complete web site"
94
- task 'publish' => 'site' do
95
- target = "people.apache.org:/www/#{spec.name}.apache.org/"
96
- puts "Uploading new site to #{target} ..."
97
- sh 'rsync', '--progress', '--recursive', '--delete', '_site/', target
98
- sh 'ssh', 'people.apache.org', 'chmod', '-f', '-R', 'g+w', "/www/#{spec.name}.apache.org/*"
94
+ task 'publish' => %w(site setup-local-site-svn) do
95
+ puts "Uploading new site ..."
96
+ sh 'rsync', '--progress', '--recursive', '--delete', '--exclude=.svn','_site/', 'site'
97
+ task('publish-site-svn').invoke
99
98
  puts 'Done'
100
99
  end
101
100
 
data/rakelib/stage.rake CHANGED
@@ -102,7 +102,7 @@ task 'stage' => %w(clobber prepare) do |task, args|
102
102
  mkpath '_staged'
103
103
 
104
104
  lambda do
105
- puts 'Ensuring all files have appropraite group and other permissions...'
105
+ puts 'Ensuring all files have appropriate group and other permissions...'
106
106
  sh 'find . -type f | xargs chmod go+r'
107
107
  sh 'find . -type d | xargs chmod go+rx'
108
108
  puts '[X] File permissions updated/validted.'
@@ -421,9 +421,13 @@ describe Release do
421
421
  Release.find.should be_instance_of(SvnRelease)
422
422
  end
423
423
 
424
- it 'should return nil if no known release process' do
425
- Dir.chdir(Dir.tmpdir) do
426
- Release.find.should be_nil
424
+ # TravisCI seems to place the tmp directory
425
+ # sub-ordinate to git repository so this will not work
426
+ unless ENV['TRAVIS_BUILD_ID']
427
+ it 'should return nil if no known release process' do
428
+ Dir.chdir(Dir.tmpdir) do
429
+ Release.find.should be_nil
430
+ end
427
431
  end
428
432
  end
429
433
 
@@ -807,9 +811,14 @@ describe GitRelease do
807
811
  end
808
812
 
809
813
  describe '#applies_to?' do
810
- it 'should reject a non-git repo' do
811
- Dir.chdir(Dir.tmpdir) do
812
- GitRelease.applies_to?.should be_false
814
+
815
+ # TravisCI seems to place the tmp directory
816
+ # sub-ordinate to git repository so this will not work
817
+ unless ENV['TRAVIS_BUILD_ID']
818
+ it 'should reject a non-git repo' do
819
+ Dir.chdir(Dir.tmpdir) do
820
+ GitRelease.applies_to?.should be_false
821
+ end
813
822
  end
814
823
  end
815
824