maven-tools 1.0.11 → 1.0.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (82) hide show
  1. checksums.yaml +4 -4
  2. data/lib/maven/tools/dsl.rb +35 -5
  3. data/lib/maven/tools/dsl/gemspec.rb +2 -2
  4. data/lib/maven/tools/dsl/jars_lock.rb +60 -0
  5. data/lib/maven/tools/dsl/profile_gemspec.rb +0 -5
  6. data/lib/maven/tools/dsl/project_gemspec.rb +0 -5
  7. data/lib/maven/tools/gemfile_lock.rb +8 -1
  8. data/lib/maven/tools/version.rb +1 -1
  9. data/lib/maven/tools/versions.rb +4 -3
  10. data/maven-tools.gemspec +1 -1
  11. data/spec/dsl/gemspec_spec/jars_and_poms.xml +1 -1
  12. data/spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml +1 -1
  13. data/spec/dsl/gemspec_spec/maven-tools.xml +1 -1
  14. data/spec/dsl/jarfile_lock_spec/Jarfile.legacy.lock +52 -0
  15. data/spec/dsl/jarfile_lock_spec/Jarfile.lock +75 -0
  16. data/spec/dsl/profile_gemspec_spec/jars_and_poms.xml +1 -1
  17. data/spec/dsl/profile_gemspec_spec/jars_and_poms_include_jars.xml +1 -1
  18. data/spec/dsl/profile_gemspec_spec/maven-tools.xml +1 -1
  19. data/spec/dsl/profile_gemspec_spec/no_gems.xml +1 -1
  20. data/spec/dsl/profile_gemspec_spec/snapshot.xml +1 -1
  21. data/spec/dsl/profile_gemspec_spec/unknown_license.xml +1 -1
  22. data/spec/dsl/project_gemspec_spec/extended.xml +1 -1
  23. data/spec/dsl/project_gemspec_spec/jars_and_poms.xml +1 -1
  24. data/spec/dsl/project_gemspec_spec/jars_and_poms_include_jars.xml +1 -1
  25. data/spec/dsl/project_gemspec_spec/maven-tools.xml +1 -1
  26. data/spec/dsl/project_gemspec_spec/no_gems.xml +1 -1
  27. data/spec/dsl/project_gemspec_spec/profile.xml +1 -1
  28. data/spec/dsl/project_gemspec_spec/snapshot.xml +1 -1
  29. data/spec/dsl/project_gemspec_spec/unknown_license.xml +1 -1
  30. data/spec/gemfile/pom.xml +1 -1
  31. data/spec/gemfile_include_jars/pom.xml +1 -1
  32. data/spec/gemfile_with_access_to_model/pom.xml +1 -1
  33. data/spec/gemfile_with_custom_source/pom.xml +1 -1
  34. data/spec/gemfile_with_custom_source_and_custom_jarname/pom.xml +1 -1
  35. data/spec/gemfile_with_extras/pom.xml +1 -1
  36. data/spec/gemfile_with_groups/pom.xml +2 -1
  37. data/spec/gemfile_with_groups_and_lockfile/pom.xml +2 -1
  38. data/spec/gemfile_with_jars_lock/Gemfile +0 -0
  39. data/spec/gemfile_with_jars_lock/Jars.lock +2 -0
  40. data/spec/gemfile_with_jars_lock/Mavenfile +5 -0
  41. data/spec/gemfile_with_jars_lock/pom.xml +70 -0
  42. data/spec/gemfile_with_lock/Gemfile.lock +3 -0
  43. data/spec/gemfile_with_lock/pom.xml +9 -1
  44. data/spec/gemfile_with_path/pom.xml +3 -2
  45. data/spec/gemfile_with_platforms/pom.xml +2 -1
  46. data/spec/gemfile_with_source/pom.xml +1 -1
  47. data/spec/gemfile_with_source_and_custom_jarname/pom.xml +1 -1
  48. data/spec/gemfile_with_source_and_no_jar/pom.xml +1 -1
  49. data/spec/gemfile_with_test_group/pom.xml +2 -1
  50. data/spec/gemfile_without_gemspec/pom.xml +2 -1
  51. data/spec/gemspec/pom.xml +1 -1
  52. data/spec/gemspec_in_profile/pom.xml +1 -1
  53. data/spec/gemspec_include_jars/pom.xml +1 -1
  54. data/spec/gemspec_no_rubygems_repo/pom.xml +1 -1
  55. data/spec/gemspec_prerelease/pom.xml +1 -1
  56. data/spec/gemspec_prerelease_snapshot/pom.xml +1 -1
  57. data/spec/gemspec_with_access_to_model/pom.xml +1 -1
  58. data/spec/gemspec_with_custom_source/pom.xml +1 -1
  59. data/spec/gemspec_with_custom_source_and_custom_jarname/pom.xml +1 -1
  60. data/spec/gemspec_with_extras/pom.xml +1 -1
  61. data/spec/gemspec_with_jar_dependencies/pom.xml +1 -1
  62. data/spec/gemspec_with_jars_lock/Jars.lock +2 -0
  63. data/spec/gemspec_with_jars_lock/Mavenfile +5 -0
  64. data/spec/gemspec_with_jars_lock/bouncy-castle-java.gemspec +20 -0
  65. data/spec/gemspec_with_jars_lock/bouncy-castle-version.rb +4 -0
  66. data/spec/gemspec_with_jars_lock/pom.xml +109 -0
  67. data/spec/gemspec_with_prereleased_dependency/pom.xml +1 -1
  68. data/spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml +1 -1
  69. data/spec/gemspec_with_source/pom.xml +1 -1
  70. data/spec/gemspec_with_source_and_custom_jarname/pom.xml +1 -1
  71. data/spec/gemspec_with_source_and_no_jar/pom.xml +1 -1
  72. data/spec/mavenfile_jrubyJar/Mavenfile +9 -0
  73. data/spec/mavenfile_jrubyJar/pom.xml +41 -0
  74. data/spec/mavenfile_jrubyWar/Mavenfile +9 -0
  75. data/spec/mavenfile_jrubyWar/pom.xml +41 -0
  76. data/spec/pom_from_jarfile_and_empty_lock/Jarfile.lock +0 -0
  77. data/spec/pom_from_jarfile_and_lock/Jarfile.lock +4 -0
  78. data/spec/pom_from_jarfile_and_skip_lock/Jarfile.lock +4 -0
  79. data/spec/pom_from_jarfile_with_repos/pom.rb +3 -0
  80. data/spec/pom_from_jarfile_with_repos/pom.xml +0 -1
  81. metadata +200 -163
  82. data/spec/pom_from_jarfile_with_repos/Mavenfile +0 -1