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
@@ -32,7 +32,7 @@
32
32
  </build>
33
33
  <properties>
34
34
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
35
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
35
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
36
36
  </properties>
37
37
  <dependencies>
38
38
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
34
34
  <version_from_model>1.5.0</version_from_model>
35
35
  </properties>
36
36
  <repositories>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
34
34
  <tesla.dump.pom>pom.xml</tesla.dump.pom>
35
35
  <tesla.dump.readonly>true</tesla.dump.readonly>
36
36
  </properties>
@@ -47,7 +47,7 @@
47
47
  </scm>
48
48
  <properties>
49
49
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
50
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
50
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
51
51
  </properties>
52
52
  <dependencies>
53
53
  <dependency>
@@ -0,0 +1,2 @@
1
+ org.bouncycastle:bcpkix-jdk15on:1.50:compile:
2
+ org.bouncycastle:bcprov-jdk15on:1.50:compile:
@@ -0,0 +1,5 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ gemspec
4
+
5
+ # vim: syntax=Ruby
@@ -0,0 +1,20 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ require './bouncy-castle-version.rb'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = 'bouncy-castle-java'
7
+ s.version = "1.5.0#{BouncyCastle::VERSION_}"
8
+ s.author = 'Hiroshi Nakamura'
9
+ s.email = 'nahi@ruby-lang.org'
10
+ s.rubyforge_project = "jruby-extras"
11
+ s.homepage = 'http://github.com/jruby/jruby/tree/master/gems/bouncy-castle-java/'
12
+ s.summary = 'Gem redistribution of Bouncy Castle jars'
13
+ s.licenses = [ 'EPL-1.0', 'GPL-2.0', 'LGPL-2.1' ]
14
+ s.description = 'Gem redistribution of "Legion of the Bouncy Castle Java cryptography APIs" jars at http://www.bouncycastle.org/java.html'
15
+ s.platform = 'java'
16
+ s.files = ['README', 'LICENSE.html', 'lib/bouncy-castle-java.rb' ] + Dir['lib/bc*.jar' ]
17
+ s.requirements << "jar org.bouncycastle:bcpkix-jdk15on, #{BouncyCastle::MAVEN_VERSION}"
18
+ end
19
+
20
+ # vim: syntax=Ruby
@@ -0,0 +1,4 @@
1
+ class BouncyCastle
2
+ MAVEN_VERSION = '1.49' unless defined? MAVEN_VERSION
3
+ VERSION_ = MAVEN_VERSION.sub( /[.]/, '' ) unless defined? BouncyCastle::VERSION_
4
+ end
@@ -0,0 +1,109 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ Copyright (c) 2012 to original author or authors
5
+ All rights reserved. This program and the accompanying materials
6
+ are made available under the terms of the Eclipse Public License v1.0
7
+ which accompanies this distribution, and is available at
8
+ http://www.eclipse.org/legal/epl-v10.html
9
+
10
+ -->
11
+ <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
12
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
13
+ <modelVersion>4.0.0</modelVersion>
14
+ <groupId>rubygems</groupId>
15
+ <artifactId>bouncy-castle-java</artifactId>
16
+ <version>1.5.0149</version>
17
+ <packaging>gem</packaging>
18
+ <name>Gem redistribution of Bouncy Castle jars</name>
19
+ <url>http://github.com/jruby/jruby/tree/master/gems/bouncy-castle-java/</url>
20
+ <description>Gem redistribution of "Legion of the Bouncy Castle Java cryptography APIs" jars at http://www.bouncycastle.org/java.html</description>
21
+ <licenses>
22
+ <license>
23
+ <name>EPL-1.0</name>
24
+ <url>http://opensource.org/licenses/EPL-1.0</url>
25
+ <comments>Eclipse Public License 1.0</comments>
26
+ </license>
27
+ <license>
28
+ <name>GPL-2.0</name>
29
+ <url>http://opensource.org/licenses/GPL-2.0</url>
30
+ <comments>GNU General Public License version 2.0</comments>
31
+ </license>
32
+ <license>
33
+ <name>LGPL-2.1</name>
34
+ <url>http://opensource.org/licenses/LGPL-2.1</url>
35
+ <comments>GNU Library or "Lesser" General Public License version 2.1</comments>
36
+ </license>
37
+ </licenses>
38
+ <developers>
39
+ <developer>
40
+ <name>Hiroshi Nakamura</name>
41
+ <email>nahi@ruby-lang.org</email>
42
+ </developer>
43
+ </developers>
44
+ <scm>
45
+ <connection>https://github.com/jruby/jruby/tree/master/gems/bouncy-castle-java.git</connection>
46
+ <url>http://github.com/jruby/jruby/tree/master/gems/bouncy-castle-java/</url>
47
+ </scm>
48
+ <properties>
49
+ <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
50
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
51
+ </properties>
52
+ <dependencies>
53
+ <dependency>
54
+ <groupId>org.bouncycastle</groupId>
55
+ <artifactId>bcpkix-jdk15on</artifactId>
56
+ <version>1.49</version>
57
+ </dependency>
58
+ </dependencies>
59
+ <repositories>
60
+ <repository>
61
+ <id>rubygems-releases</id>
62
+ <url>http://rubygems-proxy.torquebox.org/releases</url>
63
+ </repository>
64
+ </repositories>
65
+ <build>
66
+ <extensions>
67
+ <extension>
68
+ <groupId>de.saumya.mojo</groupId>
69
+ <artifactId>gem-extension</artifactId>
70
+ <version>${jruby.plugins.version}</version>
71
+ </extension>
72
+ </extensions>
73
+ <directory>${basedir}/pkg</directory>
74
+ <plugins>
75
+ <plugin>
76
+ <groupId>de.saumya.mojo</groupId>
77
+ <artifactId>gem-maven-plugin</artifactId>
78
+ <version>${jruby.plugins.version}</version>
79
+ <configuration>
80
+ <gemspec>bouncy-castle-java.gemspec</gemspec>
81
+ </configuration>
82
+ </plugin>
83
+ </plugins>
84
+ </build>
85
+ <profiles>
86
+ <profile>
87
+ <id>Jars.lock</id>
88
+ <activation>
89
+ <file>
90
+ <exists>Jars.lock</exists>
91
+ </file>
92
+ </activation>
93
+ <dependencies>
94
+ <dependency>
95
+ <groupId>org.bouncycastle</groupId>
96
+ <artifactId>bcpkix-jdk15on</artifactId>
97
+ <version>1.50</version>
98
+ <scope>compile</scope>
99
+ </dependency>
100
+ <dependency>
101
+ <groupId>org.bouncycastle</groupId>
102
+ <artifactId>bcprov-jdk15on</artifactId>
103
+ <version>1.50</version>
104
+ <scope>compile</scope>
105
+ </dependency>
106
+ </dependencies>
107
+ </profile>
108
+ </profiles>
109
+ </project>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -30,7 +30,7 @@
30
30
  </scm>
31
31
  <properties>
32
32
  <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
- <jruby.plugins.version>1.0.9</jruby.plugins.version>
33
+ <jruby.plugins.version>1.1.1</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -0,0 +1,9 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ packaging 'jrubyJar'
4
+
5
+ final_name 'my'
6
+
7
+ resource :includes => ['something']
8
+
9
+ # vim: syntax=Ruby
@@ -0,0 +1,41 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ Copyright (c) 2012 to original author or authors
5
+ All rights reserved. This program and the accompanying materials
6
+ are made available under the terms of the Eclipse Public License v1.0
7
+ which accompanies this distribution, and is available at
8
+ http://www.eclipse.org/legal/epl-v10.html
9
+
10
+ -->
11
+ <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
12
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
13
+ <modelVersion>4.0.0</modelVersion>
14
+ <groupId>no_group_id_given</groupId>
15
+ <artifactId>mavenfile_jrubyJar</artifactId>
16
+ <version>0.0.0</version>
17
+ <packaging>jrubyJar</packaging>
18
+ <name>mavenfile_jrubyJar</name>
19
+ <properties>
20
+ <jruby9.plugins.version>0.2.1</jruby9.plugins.version>
21
+ </properties>
22
+ <build>
23
+ <extensions>
24
+ <extension>
25
+ <groupId>de.saumya.mojo</groupId>
26
+ <artifactId>jruby9-extensions</artifactId>
27
+ <version>${jruby9.plugins.version}</version>
28
+ </extension>
29
+ </extensions>
30
+ <resources>
31
+ <resource>
32
+ <directory>${basedir}</directory>
33
+ <includes>
34
+ <include>something</include>
35
+ </includes>
36
+ </resource>
37
+ </resources>
38
+ <directory>${basedir}/pkg</directory>
39
+ <finalName>my</finalName>
40
+ </build>
41
+ </project>
@@ -0,0 +1,9 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ packaging 'jrubyWar'
4
+
5
+ final_name 'my'
6
+
7
+ resource :includes => ['something']
8
+
9
+ # vim: syntax=Ruby
@@ -0,0 +1,41 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+
4
+ Copyright (c) 2012 to original author or authors
5
+ All rights reserved. This program and the accompanying materials
6
+ are made available under the terms of the Eclipse Public License v1.0
7
+ which accompanies this distribution, and is available at
8
+ http://www.eclipse.org/legal/epl-v10.html
9
+
10
+ -->
11
+ <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
12
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
13
+ <modelVersion>4.0.0</modelVersion>
14
+ <groupId>no_group_id_given</groupId>
15
+ <artifactId>mavenfile_jrubyWar</artifactId>
16
+ <version>0.0.0</version>
17
+ <packaging>jrubyWar</packaging>
18
+ <name>mavenfile_jrubyWar</name>
19
+ <properties>
20
+ <jruby9.plugins.version>0.2.1</jruby9.plugins.version>
21
+ </properties>
22
+ <build>
23
+ <extensions>
24
+ <extension>
25
+ <groupId>de.saumya.mojo</groupId>
26
+ <artifactId>jruby9-extensions</artifactId>
27
+ <version>${jruby9.plugins.version}</version>
28
+ </extension>
29
+ </extensions>
30
+ <resources>
31
+ <resource>
32
+ <directory>${basedir}</directory>
33
+ <includes>
34
+ <include>something</include>
35
+ </includes>
36
+ </resource>
37
+ </resources>
38
+ <directory>${basedir}/pkg</directory>
39
+ <finalName>my</finalName>
40
+ </build>
41
+ </project>
@@ -0,0 +1,4 @@
1
+ ---
2
+ :test:
3
+ - org.hamcrest:hamcrest-core:jar:1.3
4
+ - junit:junit:jar:4.11
@@ -0,0 +1,4 @@
1
+ ---
2
+ :test:
3
+ - org.hamcrest:hamcrest-core:jar:1.3
4
+ - junit:junit:jar:4.11
@@ -0,0 +1,3 @@
1
+ project do
2
+ jarfile
3
+ end
@@ -14,7 +14,6 @@
14
14
  <groupId>no_group_id_given</groupId>
15
15
  <artifactId>pom_from_jarfile_with_repos</artifactId>
16
16
  <version>0.0.0</version>
17
- <name>pom_from_jarfile_with_repos</name>
18
17
  <dependencies>
19
18
  <dependency>
20
19
  <groupId>junit</groupId>
metadata CHANGED
@@ -1,57 +1,57 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: maven-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.11
4
+ version: 1.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Meier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-24 00:00:00.000000000 Z
11
+ date: 2015-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: virtus
15
- version_requirements: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ~>
18
- - !ruby/object:Gem::Version
19
- version: '1.0'
20
14
  requirement: !ruby/object:Gem::Requirement
21
15
  requirements:
22
16
  - - ~>
23
17
  - !ruby/object:Gem::Version
24
18
  version: '1.0'
19
+ name: virtus
25
20
  prerelease: false
26
21
  type: :runtime
27
- - !ruby/object:Gem::Dependency
28
- name: rake
29
22
  version_requirements: !ruby/object:Gem::Requirement
30
23
  requirements:
31
24
  - - ~>
32
25
  - !ruby/object:Gem::Version
33
- version: '10.0'
26
+ version: '1.0'
27
+ - !ruby/object:Gem::Dependency
34
28
  requirement: !ruby/object:Gem::Requirement
35
29
  requirements:
36
30
  - - ~>
37
31
  - !ruby/object:Gem::Version
38
32
  version: '10.0'
33
+ name: rake
39
34
  prerelease: false
40
35
  type: :development
41
- - !ruby/object:Gem::Dependency
42
- name: minitest
43
36
  version_requirements: !ruby/object:Gem::Requirement
44
37
  requirements:
45
38
  - - ~>
46
39
  - !ruby/object:Gem::Version
47
- version: '5.3'
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
48
42
  requirement: !ruby/object:Gem::Requirement
49
43
  requirements:
50
44
  - - ~>
51
45
  - !ruby/object:Gem::Version
52
46
  version: '5.3'
47
+ name: minitest
53
48
  prerelease: false
54
49
  type: :development
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '5.3'
55
55
  description: adds versions conversion from rubygems to maven and vice versa, ruby DSL for POM (Project Object Model from maven), pom generators, etc
56
56
  email:
57
57
  - m.kristian@web.de
@@ -74,6 +74,7 @@ files:
74
74
  - lib/maven/tools/dsl/gemspec.rb
75
75
  - lib/maven/tools/dsl/jarfile.rb
76
76
  - lib/maven/tools/dsl/jarfile_lock.rb
77
+ - lib/maven/tools/dsl/jars_lock.rb
77
78
  - lib/maven/tools/dsl/jruby_dsl.rb
78
79
  - lib/maven/tools/dsl/models.rb
79
80
  - lib/maven/tools/dsl/options.rb
@@ -100,6 +101,8 @@ files:
100
101
  - spec/dsl/gemspec_spec/maven-tools.gemspec
101
102
  - spec/dsl/gemspec_spec/maven-tools.xml
102
103
  - spec/dsl/jarfile_lock_spec.rb
104
+ - spec/dsl/jarfile_lock_spec/Jarfile.legacy.lock
105
+ - spec/dsl/jarfile_lock_spec/Jarfile.lock
103
106
  - spec/dsl/profile_gemspec_spec.rb
104
107
  - spec/dsl/profile_gemspec_spec/jars_and_poms.gemspec
105
108
  - spec/dsl/profile_gemspec_spec/jars_and_poms.xml
@@ -161,6 +164,10 @@ files:
161
164
  - spec/gemfile_with_groups_and_lockfile/Gemfile.lock
162
165
  - spec/gemfile_with_groups_and_lockfile/Mavenfile
163
166
  - spec/gemfile_with_groups_and_lockfile/pom.xml
167
+ - spec/gemfile_with_jars_lock/Gemfile
168
+ - spec/gemfile_with_jars_lock/Jars.lock
169
+ - spec/gemfile_with_jars_lock/Mavenfile
170
+ - spec/gemfile_with_jars_lock/pom.xml
164
171
  - spec/gemfile_with_lock/Gemfile
165
172
  - spec/gemfile_with_lock/Gemfile.lock
166
173
  - spec/gemfile_with_lock/Mavenfile
@@ -235,6 +242,11 @@ files:
235
242
  - spec/gemspec_with_jar_dependencies/Mavenfile
236
243
  - spec/gemspec_with_jar_dependencies/bouncy-castle-java.gemspec
237
244
  - spec/gemspec_with_jar_dependencies/pom.xml
245
+ - spec/gemspec_with_jars_lock/Jars.lock
246
+ - spec/gemspec_with_jars_lock/Mavenfile
247
+ - spec/gemspec_with_jars_lock/bouncy-castle-java.gemspec
248
+ - spec/gemspec_with_jars_lock/bouncy-castle-version.rb
249
+ - spec/gemspec_with_jars_lock/pom.xml
238
250
  - spec/gemspec_with_prereleased_dependency/Mavenfile
239
251
  - spec/gemspec_with_prereleased_dependency/bouncy-castle-java.gemspec
240
252
  - spec/gemspec_with_prereleased_dependency/pom.xml
@@ -256,19 +268,26 @@ files:
256
268
  - spec/gemspec_with_source_and_no_jar/src/main/java/.keep
257
269
  - spec/jarfile_spec.rb
258
270
  - spec/mavenfile/Mavenfile
271
+ - spec/mavenfile_jrubyJar/Mavenfile
272
+ - spec/mavenfile_jrubyJar/pom.xml
273
+ - spec/mavenfile_jrubyWar/Mavenfile
274
+ - spec/mavenfile_jrubyWar/pom.xml
259
275
  - spec/my/my.gemspec
260
276
  - spec/pom.xml
261
277
  - spec/pom_from_jarfile/Jarfile
262
278
  - spec/pom_from_jarfile/pom.rb
263
279
  - spec/pom_from_jarfile/pom.xml
264
280
  - spec/pom_from_jarfile_and_empty_lock/Jarfile
281
+ - spec/pom_from_jarfile_and_empty_lock/Jarfile.lock
265
282
  - spec/pom_from_jarfile_and_empty_lock/pom.rb
266
283
  - spec/pom_from_jarfile_and_empty_lock/pom.xml
267
284
  - spec/pom_from_jarfile_and_lock/Jarfile
285
+ - spec/pom_from_jarfile_and_lock/Jarfile.lock
268
286
  - spec/pom_from_jarfile_and_lock/pom.rb
269
287
  - spec/pom_from_jarfile_and_lock/pom.xml
270
288
  - spec/pom_from_jarfile_and_lock/pom2.xml
271
289
  - spec/pom_from_jarfile_and_skip_lock/Jarfile
290
+ - spec/pom_from_jarfile_and_skip_lock/Jarfile.lock
272
291
  - spec/pom_from_jarfile_and_skip_lock/pom.rb
273
292
  - spec/pom_from_jarfile_and_skip_lock/pom.xml
274
293
  - spec/pom_from_jarfile_help_only/Jarfile
@@ -281,7 +300,7 @@ files:
281
300
  - spec/pom_from_jarfile_with_jruby/pom.rb
282
301
  - spec/pom_from_jarfile_with_jruby/pom.xml
283
302
  - spec/pom_from_jarfile_with_repos/Jarfile
284
- - spec/pom_from_jarfile_with_repos/Mavenfile
303
+ - spec/pom_from_jarfile_with_repos/pom.rb
285
304
  - spec/pom_from_jarfile_with_repos/pom.xml
286
305
  - spec/pom_maven_alternative_style/pom.rb
287
306
  - spec/pom_maven_hash_style/pom.rb
@@ -315,202 +334,220 @@ signing_key:
315
334
  specification_version: 4
316
335
  summary: helpers for maven related tasks
317
336
  test_files:
318
- - spec/spec_helper.rb
337
+ - spec/artifact_spec.rb
338
+ - spec/coordinate_spec.rb
319
339
  - spec/gemspec_dependencies_spec.rb
320
340
  - spec/jarfile_spec.rb
321
- - spec/coordinate_spec.rb
322
- - spec/artifact_spec.rb
323
341
  - spec/pom_spec.rb
324
- - spec/gemspec_include_jars/bouncy-castle-version.rb
325
- - spec/gemfile_with_source/bouncy-castle-version.rb
342
+ - spec/spec_helper.rb
343
+ - spec/dsl/gemspec_spec.rb
344
+ - spec/dsl/jarfile_lock_spec.rb
345
+ - spec/dsl/profile_gemspec_spec.rb
346
+ - spec/dsl/project_gemspec_spec.rb
326
347
  - spec/gemfile/bouncy-castle-version.rb
348
+ - spec/gemfile_include_jars/bouncy-castle-version.rb
349
+ - spec/gemfile_with_extras/bouncy-castle-version.rb
327
350
  - spec/gemfile_with_lock/bouncy-castle-version.rb
351
+ - spec/gemfile_with_source/bouncy-castle-version.rb
352
+ - spec/gemspec/bouncy-castle-version.rb
353
+ - spec/gemspec_in_profile/bouncy-castle-version.rb
354
+ - spec/gemspec_include_jars/bouncy-castle-version.rb
355
+ - spec/gemspec_with_extras/bouncy-castle-version.rb
356
+ - spec/gemspec_with_jars_lock/bouncy-castle-version.rb
328
357
  - spec/gemspec_with_source/bouncy-castle-version.rb
329
- - spec/gemfile_with_extras/bouncy-castle-version.rb
330
358
  - spec/pom_from_jarfile/pom.rb
331
- - spec/pom_maven_alternative_style/pom.rb
332
- - spec/gemspec_with_extras/bouncy-castle-version.rb
333
- - spec/pom_with_execute/pom.rb
334
- - spec/dsl/gemspec_spec.rb
335
- - spec/dsl/profile_gemspec_spec.rb
336
- - spec/dsl/project_gemspec_spec.rb
337
- - spec/dsl/jarfile_lock_spec.rb
338
- - spec/pom_from_jarfile_with_exclusions/pom.rb
339
- - spec/pom_from_jarfile_and_lock/pom.rb
340
- - spec/pom_maven_hash_style/pom.rb
341
359
  - spec/pom_from_jarfile_and_empty_lock/pom.rb
342
- - spec/pom_from_jarfile_with_jruby/pom.rb
360
+ - spec/pom_from_jarfile_and_lock/pom.rb
343
361
  - spec/pom_from_jarfile_and_skip_lock/pom.rb
344
- - spec/gemspec_in_profile/bouncy-castle-version.rb
345
- - spec/gemfile_include_jars/bouncy-castle-version.rb
346
- - spec/pom_maven_style/pom.rb
347
- - spec/gemspec/bouncy-castle-version.rb
348
362
  - spec/pom_from_jarfile_help_only/pom.rb
363
+ - spec/pom_from_jarfile_with_exclusions/pom.rb
364
+ - spec/pom_from_jarfile_with_jruby/pom.rb
365
+ - spec/pom_from_jarfile_with_repos/pom.rb
366
+ - spec/pom_maven_alternative_style/pom.rb
367
+ - spec/pom_maven_hash_style/pom.rb
368
+ - spec/pom_maven_style/pom.rb
369
+ - spec/pom_with_execute/pom.rb
349
370
  - spec/pom.xml
350
- - spec/gemspec_include_jars/pom.xml
351
- - spec/gemfile_with_custom_source_and_custom_jarname/pom.xml
352
- - spec/gemfile_with_source/pom.xml
353
- - spec/gemspec_with_source_and_no_jar/pom.xml
371
+ - spec/dsl/gemspec_spec/jars_and_poms.xml
372
+ - spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml
373
+ - spec/dsl/gemspec_spec/maven-tools.xml
374
+ - spec/dsl/profile_gemspec_spec/jars_and_poms.xml
375
+ - spec/dsl/profile_gemspec_spec/jars_and_poms_include_jars.xml
376
+ - spec/dsl/profile_gemspec_spec/maven-tools.xml
377
+ - spec/dsl/profile_gemspec_spec/no_gems.xml
378
+ - spec/dsl/profile_gemspec_spec/snapshot.xml
379
+ - spec/dsl/profile_gemspec_spec/unknown_license.xml
380
+ - spec/dsl/project_gemspec_spec/extended.xml
381
+ - spec/dsl/project_gemspec_spec/jars_and_poms.xml
382
+ - spec/dsl/project_gemspec_spec/jars_and_poms_include_jars.xml
383
+ - spec/dsl/project_gemspec_spec/maven-tools.xml
384
+ - spec/dsl/project_gemspec_spec/no_gems.xml
385
+ - spec/dsl/project_gemspec_spec/profile.xml
386
+ - spec/dsl/project_gemspec_spec/snapshot.xml
387
+ - spec/dsl/project_gemspec_spec/unknown_license.xml
354
388
  - spec/gemfile/pom.xml
389
+ - spec/gemfile_include_jars/pom.xml
390
+ - spec/gemfile_with_access_to_model/pom.xml
391
+ - spec/gemfile_with_custom_source/pom.xml
392
+ - spec/gemfile_with_custom_source_and_custom_jarname/pom.xml
393
+ - spec/gemfile_with_extras/pom.xml
394
+ - spec/gemfile_with_groups/pom.xml
395
+ - spec/gemfile_with_groups_and_lockfile/pom.xml
396
+ - spec/gemfile_with_jars_lock/pom.xml
355
397
  - spec/gemfile_with_lock/pom.xml
356
- - spec/gemspec_with_prereleased_dependency/pom.xml
357
- - spec/gemfile_with_test_group/pom.xml
398
+ - spec/gemfile_with_path/pom.xml
358
399
  - spec/gemfile_with_platforms/pom.xml
359
- - spec/gemspec_with_source/pom.xml
400
+ - spec/gemfile_with_source/pom.xml
401
+ - spec/gemfile_with_source_and_custom_jarname/pom.xml
360
402
  - spec/gemfile_with_source_and_no_jar/pom.xml
361
- - spec/gemspec_prerelease_snapshot/pom.xml
403
+ - spec/gemfile_with_test_group/pom.xml
404
+ - spec/gemfile_without_gemspec/pom.xml
405
+ - spec/gemspec/pom.xml
406
+ - spec/gemspec_in_profile/pom.xml
407
+ - spec/gemspec_include_jars/pom.xml
408
+ - spec/gemspec_no_rubygems_repo/pom.xml
362
409
  - spec/gemspec_prerelease/pom.xml
410
+ - spec/gemspec_prerelease_snapshot/pom.xml
411
+ - spec/gemspec_with_access_to_model/pom.xml
412
+ - spec/gemspec_with_custom_source/pom.xml
363
413
  - spec/gemspec_with_custom_source_and_custom_jarname/pom.xml
364
- - spec/gemfile_with_groups/pom.xml
365
- - spec/gemfile_with_extras/pom.xml
366
- - spec/gemfile_with_source_and_custom_jarname/pom.xml
367
- - spec/pom_from_jarfile/pom.xml
368
414
  - spec/gemspec_with_extras/pom.xml
369
- - spec/pom_with_execute/pom.xml
370
- - spec/dsl/project_gemspec_spec/profile.xml
371
- - spec/dsl/project_gemspec_spec/unknown_license.xml
372
- - spec/dsl/project_gemspec_spec/maven-tools.xml
373
- - spec/dsl/project_gemspec_spec/snapshot.xml
374
- - spec/dsl/project_gemspec_spec/no_gems.xml
375
- - spec/dsl/project_gemspec_spec/jars_and_poms_include_jars.xml
376
- - spec/dsl/project_gemspec_spec/jars_and_poms.xml
377
- - spec/dsl/project_gemspec_spec/extended.xml
378
- - spec/dsl/profile_gemspec_spec/unknown_license.xml
379
- - spec/dsl/profile_gemspec_spec/maven-tools.xml
380
- - spec/dsl/profile_gemspec_spec/snapshot.xml
381
- - spec/dsl/profile_gemspec_spec/no_gems.xml
382
- - spec/dsl/profile_gemspec_spec/jars_and_poms_include_jars.xml
383
- - spec/dsl/profile_gemspec_spec/jars_and_poms.xml
384
- - spec/dsl/gemspec_spec/maven-tools.xml
385
- - spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml
386
- - spec/dsl/gemspec_spec/jars_and_poms.xml
387
- - spec/gemfile_with_custom_source/pom.xml
388
- - spec/pom_from_jarfile_with_exclusions/pom.xml
389
- - spec/pom_from_jarfile_and_lock/pom2.xml
390
- - spec/pom_from_jarfile_and_lock/pom.xml
391
- - spec/gemspec_no_rubygems_repo/pom.xml
392
- - spec/gemfile_with_path/pom.xml
393
- - spec/gemspec_with_access_to_model/pom.xml
394
- - spec/gemfile_with_groups_and_lockfile/pom.xml
395
- - spec/gemfile_with_access_to_model/pom.xml
415
+ - spec/gemspec_with_jar_dependencies/pom.xml
416
+ - spec/gemspec_with_jars_lock/pom.xml
417
+ - spec/gemspec_with_prereleased_dependency/pom.xml
418
+ - spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml
419
+ - spec/gemspec_with_source/pom.xml
396
420
  - spec/gemspec_with_source_and_custom_jarname/pom.xml
421
+ - spec/gemspec_with_source_and_no_jar/pom.xml
422
+ - spec/mavenfile_jrubyJar/pom.xml
423
+ - spec/mavenfile_jrubyWar/pom.xml
424
+ - spec/pom_from_jarfile/pom.xml
397
425
  - spec/pom_from_jarfile_and_empty_lock/pom.xml
398
- - spec/gemspec_with_custom_source/pom.xml
399
- - spec/pom_from_jarfile_with_jruby/pom.xml
426
+ - spec/pom_from_jarfile_and_lock/pom.xml
427
+ - spec/pom_from_jarfile_and_lock/pom2.xml
400
428
  - spec/pom_from_jarfile_and_skip_lock/pom.xml
401
- - spec/gemspec_in_profile/pom.xml
402
- - spec/gemfile_include_jars/pom.xml
403
- - spec/gemspec_with_jar_dependencies/pom.xml
404
- - spec/gemspec/pom.xml
405
- - spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml
406
429
  - spec/pom_from_jarfile_help_only/pom.xml
407
- - spec/gemfile_without_gemspec/pom.xml
430
+ - spec/pom_from_jarfile_with_exclusions/pom.xml
431
+ - spec/pom_from_jarfile_with_jruby/pom.xml
408
432
  - spec/pom_from_jarfile_with_repos/pom.xml
409
- - spec/gemspec_include_jars/Mavenfile
410
- - spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile
411
- - spec/gemfile_with_custom_source_and_custom_jarname/Gemfile
412
- - spec/gemfile_with_source/Mavenfile
413
- - spec/mavenfile/Mavenfile
414
- - spec/gemspec_with_source_and_no_jar/Mavenfile
415
- - spec/gemfile/Mavenfile
433
+ - spec/pom_with_execute/pom.xml
416
434
  - spec/gemfile/Gemfile
417
- - spec/gemfile_with_lock/Mavenfile
435
+ - spec/gemfile/Mavenfile
436
+ - spec/gemfile_include_jars/Gemfile
437
+ - spec/gemfile_include_jars/Mavenfile
438
+ - spec/gemfile_with_access_to_model/Gemfile
439
+ - spec/gemfile_with_access_to_model/Mavenfile
440
+ - spec/gemfile_with_custom_source/Gemfile
441
+ - spec/gemfile_with_custom_source/Mavenfile
442
+ - spec/gemfile_with_custom_source_and_custom_jarname/Gemfile
443
+ - spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile
444
+ - spec/gemfile_with_extras/Gemfile
445
+ - spec/gemfile_with_extras/Mavenfile
446
+ - spec/gemfile_with_groups/Gemfile
447
+ - spec/gemfile_with_groups/Mavenfile
448
+ - spec/gemfile_with_groups_and_lockfile/Gemfile
449
+ - spec/gemfile_with_groups_and_lockfile/Mavenfile
450
+ - spec/gemfile_with_jars_lock/Gemfile
451
+ - spec/gemfile_with_jars_lock/Mavenfile
418
452
  - spec/gemfile_with_lock/Gemfile
419
- - spec/gemspec_with_prereleased_dependency/Mavenfile
420
- - spec/gemfile_with_test_group/Mavenfile
421
- - spec/gemfile_with_test_group/Gemfile
422
- - spec/gemfile_with_platforms/Mavenfile
453
+ - spec/gemfile_with_lock/Mavenfile
454
+ - spec/gemfile_with_path/Gemfile
455
+ - spec/gemfile_with_path/Mavenfile
423
456
  - spec/gemfile_with_platforms/Gemfile
424
- - spec/gemspec_with_source/Mavenfile
425
- - spec/gemfile_with_source_and_no_jar/Mavenfile
457
+ - spec/gemfile_with_platforms/Mavenfile
458
+ - spec/gemfile_with_source/Mavenfile
459
+ - spec/gemfile_with_source_and_custom_jarname/Gemfile
460
+ - spec/gemfile_with_source_and_custom_jarname/Mavenfile
426
461
  - spec/gemfile_with_source_and_no_jar/Gemfile
427
- - spec/gemspec_prerelease_snapshot/Mavenfile
462
+ - spec/gemfile_with_source_and_no_jar/Mavenfile
463
+ - spec/gemfile_with_test_group/Gemfile
464
+ - spec/gemfile_with_test_group/Mavenfile
465
+ - spec/gemfile_without_gemspec/Gemfile
466
+ - spec/gemfile_without_gemspec/Mavenfile
467
+ - spec/gemspec/Mavenfile
468
+ - spec/gemspec_in_profile/Mavenfile
469
+ - spec/gemspec_include_jars/Mavenfile
470
+ - spec/gemspec_no_rubygems_repo/Mavenfile
428
471
  - spec/gemspec_prerelease/Mavenfile
472
+ - spec/gemspec_prerelease_snapshot/Mavenfile
473
+ - spec/gemspec_with_access_to_model/Mavenfile
474
+ - spec/gemspec_with_custom_source/Mavenfile
429
475
  - spec/gemspec_with_custom_source_and_custom_jarname/Mavenfile
430
- - spec/gemfile_with_groups/Mavenfile
431
- - spec/gemfile_with_groups/Gemfile
432
- - spec/gemfile_with_extras/Mavenfile
433
- - spec/gemfile_with_extras/Gemfile
434
- - spec/gemfile_with_source_and_custom_jarname/Mavenfile
435
- - spec/gemfile_with_source_and_custom_jarname/Gemfile
436
- - spec/pom_from_jarfile/Jarfile
437
476
  - spec/gemspec_with_extras/Mavenfile
438
- - spec/gemfile_with_custom_source/Mavenfile
439
- - spec/gemfile_with_custom_source/Gemfile
440
- - spec/pom_from_jarfile_with_exclusions/Jarfile
441
- - spec/pom_from_jarfile_and_lock/Jarfile
442
- - spec/gemspec_no_rubygems_repo/Mavenfile
443
- - spec/gemfile_with_path/Mavenfile
444
- - spec/gemfile_with_path/Gemfile
445
- - spec/gemspec_with_access_to_model/Mavenfile
446
- - spec/gemfile_with_groups_and_lockfile/Mavenfile
447
- - spec/gemfile_with_groups_and_lockfile/Gemfile
448
- - spec/gemfile_with_access_to_model/Mavenfile
449
- - spec/gemfile_with_access_to_model/Gemfile
477
+ - spec/gemspec_with_jar_dependencies/Mavenfile
478
+ - spec/gemspec_with_jars_lock/Mavenfile
479
+ - spec/gemspec_with_prereleased_dependency/Mavenfile
480
+ - spec/gemspec_with_prereleased_dependency_and_no_repo/Mavenfile
481
+ - spec/gemspec_with_source/Mavenfile
450
482
  - spec/gemspec_with_source_and_custom_jarname/Mavenfile
483
+ - spec/gemspec_with_source_and_no_jar/Mavenfile
484
+ - spec/mavenfile/Mavenfile
485
+ - spec/mavenfile_jrubyJar/Mavenfile
486
+ - spec/mavenfile_jrubyWar/Mavenfile
487
+ - spec/pom_from_jarfile/Jarfile
451
488
  - spec/pom_from_jarfile_and_empty_lock/Jarfile
452
- - spec/gemspec_with_custom_source/Mavenfile
453
- - spec/pom_from_jarfile_with_jruby/Jarfile
489
+ - spec/pom_from_jarfile_and_lock/Jarfile
454
490
  - spec/pom_from_jarfile_and_skip_lock/Jarfile
455
- - spec/gemspec_in_profile/Mavenfile
456
- - spec/gemfile_include_jars/Mavenfile
457
- - spec/gemfile_include_jars/Gemfile
458
- - spec/gemspec_with_jar_dependencies/Mavenfile
459
- - spec/gemspec/Mavenfile
460
- - spec/gemspec_with_prereleased_dependency_and_no_repo/Mavenfile
461
491
  - spec/pom_from_jarfile_help_only/Jarfile
462
- - spec/gemfile_without_gemspec/Mavenfile
463
- - spec/gemfile_without_gemspec/Gemfile
464
- - spec/pom_from_jarfile_with_repos/Mavenfile
492
+ - spec/pom_from_jarfile_with_exclusions/Jarfile
493
+ - spec/pom_from_jarfile_with_jruby/Jarfile
465
494
  - spec/pom_from_jarfile_with_repos/Jarfile
495
+ - spec/dsl/jarfile_lock_spec/Jarfile.legacy.lock
496
+ - spec/dsl/jarfile_lock_spec/Jarfile.lock
497
+ - spec/gemfile_with_groups_and_lockfile/Gemfile.lock
498
+ - spec/gemfile_with_jars_lock/Jars.lock
466
499
  - spec/gemfile_with_lock/Gemfile.lock
467
500
  - spec/gemfile_with_test_group/Gemfile.lock
468
- - spec/gemfile_with_groups_and_lockfile/Gemfile.lock
501
+ - spec/gemspec_with_jars_lock/Jars.lock
502
+ - spec/pom_from_jarfile_and_empty_lock/Jarfile.lock
503
+ - spec/pom_from_jarfile_and_lock/Jarfile.lock
504
+ - spec/pom_from_jarfile_and_skip_lock/Jarfile.lock
505
+ - spec/gemfile_with_custom_source/src/java/.keep
469
506
  - spec/gemfile_with_custom_source_and_custom_jarname/src/java/.keep
470
507
  - spec/gemfile_with_source/src/main/java/.keep
471
- - spec/gemspec_with_source_and_no_jar/src/main/java/.keep
472
- - spec/gemspec_with_source/src/main/java/.keep
508
+ - spec/gemfile_with_source_and_custom_jarname/src/main/java/.keep
473
509
  - spec/gemfile_with_source_and_no_jar/src/main/java/.keep
510
+ - spec/gemspec_with_custom_source/src/java/.keep
474
511
  - spec/gemspec_with_custom_source_and_custom_jarname/src/java/.keep
475
- - spec/gemfile_with_source_and_custom_jarname/src/main/java/.keep
476
- - spec/gemfile_with_custom_source/src/java/.keep
512
+ - spec/gemspec_with_source/src/main/java/.keep
477
513
  - spec/gemspec_with_source_and_custom_jarname/src/main/java/.keep
478
- - spec/gemspec_with_custom_source/src/java/.keep
479
- - spec/gemspec_include_jars/bouncy-castle-java.gemspec
480
- - spec/gemfile_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
481
- - spec/gemfile_with_source/bouncy-castle-java.gemspec
482
- - spec/gemspec_with_source_and_no_jar/bouncy-castle-java.gemspec
483
- - spec/gemfile/bouncy-castle-java.gemspec
484
- - spec/gemfile_with_lock/bouncy-castle-java.gemspec
485
- - spec/gemspec_with_prereleased_dependency/bouncy-castle-java.gemspec
486
- - spec/gemspec_with_source/bouncy-castle-java.gemspec
487
- - spec/gemfile_with_source_and_no_jar/bouncy-castle-java.gemspec
488
- - spec/gemspec_prerelease_snapshot/bouncy-castle-java.gemspec
489
- - spec/my/my.gemspec
490
- - spec/gemspec_prerelease/bouncy-castle-java.gemspec
491
- - spec/gemspec_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
492
- - spec/gemfile_with_extras/bouncy-castle-java.gemspec
493
- - spec/gemfile_with_source_and_custom_jarname/bouncy-castle-java.gemspec
494
- - spec/gemspec_with_extras/bouncy-castle-java.gemspec
495
- - spec/dsl/project_gemspec_spec/unknown_license.gemspec
514
+ - spec/gemspec_with_source_and_no_jar/src/main/java/.keep
515
+ - spec/dsl/gemspec_spec/jars_and_poms.gemspec
516
+ - spec/dsl/gemspec_spec/maven-tools.gemspec
517
+ - spec/dsl/profile_gemspec_spec/jars_and_poms.gemspec
518
+ - spec/dsl/profile_gemspec_spec/maven-tools.gemspec
519
+ - spec/dsl/profile_gemspec_spec/snapshot.gemspec
520
+ - spec/dsl/profile_gemspec_spec/unknown_license.gemspec
496
521
  - spec/dsl/project_gemspec_spec/extended.gemspec
497
522
  - spec/dsl/project_gemspec_spec/jars_and_poms.gemspec
498
- - spec/dsl/project_gemspec_spec/snapshot.gemspec
499
523
  - spec/dsl/project_gemspec_spec/maven-tools.gemspec
500
- - spec/dsl/profile_gemspec_spec/unknown_license.gemspec
501
- - spec/dsl/profile_gemspec_spec/jars_and_poms.gemspec
502
- - spec/dsl/profile_gemspec_spec/snapshot.gemspec
503
- - spec/dsl/profile_gemspec_spec/maven-tools.gemspec
504
- - spec/dsl/gemspec_spec/jars_and_poms.gemspec
505
- - spec/dsl/gemspec_spec/maven-tools.gemspec
524
+ - spec/dsl/project_gemspec_spec/snapshot.gemspec
525
+ - spec/dsl/project_gemspec_spec/unknown_license.gemspec
526
+ - spec/gemfile/bouncy-castle-java.gemspec
527
+ - spec/gemfile_include_jars/bouncy-castle-java.gemspec
528
+ - spec/gemfile_with_access_to_model/bouncy-castle-java.gemspec
506
529
  - spec/gemfile_with_custom_source/bouncy-castle-java.gemspec
530
+ - spec/gemfile_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
531
+ - spec/gemfile_with_extras/bouncy-castle-java.gemspec
532
+ - spec/gemfile_with_lock/bouncy-castle-java.gemspec
533
+ - spec/gemfile_with_source/bouncy-castle-java.gemspec
534
+ - spec/gemfile_with_source_and_custom_jarname/bouncy-castle-java.gemspec
535
+ - spec/gemfile_with_source_and_no_jar/bouncy-castle-java.gemspec
536
+ - spec/gemspec/bouncy-castle-java.gemspec
537
+ - spec/gemspec_in_profile/bouncy-castle-java.gemspec
538
+ - spec/gemspec_include_jars/bouncy-castle-java.gemspec
507
539
  - spec/gemspec_no_rubygems_repo/bouncy-castle-java.gemspec
540
+ - spec/gemspec_prerelease/bouncy-castle-java.gemspec
541
+ - spec/gemspec_prerelease_snapshot/bouncy-castle-java.gemspec
508
542
  - spec/gemspec_with_access_to_model/bouncy-castle-java.gemspec
509
- - spec/gemfile_with_access_to_model/bouncy-castle-java.gemspec
510
- - spec/gemspec_with_source_and_custom_jarname/bouncy-castle-java.gemspec
511
543
  - spec/gemspec_with_custom_source/bouncy-castle-java.gemspec
512
- - spec/gemspec_in_profile/bouncy-castle-java.gemspec
513
- - spec/gemfile_include_jars/bouncy-castle-java.gemspec
544
+ - spec/gemspec_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
545
+ - spec/gemspec_with_extras/bouncy-castle-java.gemspec
514
546
  - spec/gemspec_with_jar_dependencies/bouncy-castle-java.gemspec
515
- - spec/gemspec/bouncy-castle-java.gemspec
547
+ - spec/gemspec_with_jars_lock/bouncy-castle-java.gemspec
548
+ - spec/gemspec_with_prereleased_dependency/bouncy-castle-java.gemspec
516
549
  - spec/gemspec_with_prereleased_dependency_and_no_repo/bouncy-castle-java.gemspec
550
+ - spec/gemspec_with_source/bouncy-castle-java.gemspec
551
+ - spec/gemspec_with_source_and_custom_jarname/bouncy-castle-java.gemspec
552
+ - spec/gemspec_with_source_and_no_jar/bouncy-castle-java.gemspec
553
+ - spec/my/my.gemspec