maven-tools 1.0.5 → 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +4 -4
  2. data/Mavenfile +4 -3
  3. data/Rakefile +33 -1
  4. data/lib/maven/tools/dsl.rb +32 -119
  5. data/lib/maven/tools/dsl/dependency_dsl.rb +9 -3
  6. data/lib/maven/tools/dsl/gem_support.rb +97 -0
  7. data/lib/maven/tools/dsl/gemspec.rb +158 -0
  8. data/lib/maven/tools/dsl/jarfile.rb +72 -16
  9. data/lib/maven/tools/dsl/jarfile_lock.rb +106 -0
  10. data/lib/maven/tools/dsl/profile_gemspec.rb +42 -0
  11. data/lib/maven/tools/dsl/project_gemspec.rb +84 -0
  12. data/lib/maven/tools/gemspec_dependencies.rb +1 -0
  13. data/lib/maven/tools/jarfile.rb +7 -4
  14. data/lib/maven/tools/licenses.rb +77 -0
  15. data/lib/maven/tools/pom.rb +3 -5
  16. data/lib/maven/tools/project.rb +49 -0
  17. data/lib/maven/tools/version.rb +1 -1
  18. data/lib/maven/tools/versions.rb +3 -3
  19. data/lib/maven/tools/visitor.rb +8 -8
  20. data/spec/dsl/gemspec_spec.rb +58 -0
  21. data/spec/dsl/gemspec_spec/jars_and_poms.gemspec +22 -0
  22. data/spec/dsl/gemspec_spec/jars_and_poms.xml +47 -0
  23. data/spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml +64 -0
  24. data/spec/dsl/gemspec_spec/maven-tools.gemspec +422 -0
  25. data/spec/dsl/gemspec_spec/maven-tools.xml +44 -0
  26. data/spec/dsl/jarfile_lock_spec.rb +118 -0
  27. data/spec/dsl/profile_gemspec_spec.rb +77 -0
  28. data/spec/dsl/profile_gemspec_spec/jars_and_poms.gemspec +21 -0
  29. data/spec/dsl/profile_gemspec_spec/jars_and_poms.xml +54 -0
  30. data/spec/dsl/profile_gemspec_spec/jars_and_poms_include_jars.xml +71 -0
  31. data/spec/dsl/profile_gemspec_spec/maven-tools.gemspec +422 -0
  32. data/spec/dsl/profile_gemspec_spec/maven-tools.xml +51 -0
  33. data/spec/dsl/profile_gemspec_spec/no_gems.xml +29 -0
  34. data/spec/dsl/profile_gemspec_spec/snapshot.gemspec +17 -0
  35. data/spec/dsl/profile_gemspec_spec/snapshot.xml +29 -0
  36. data/spec/dsl/project_gemspec_spec.rb +97 -0
  37. data/spec/dsl/project_gemspec_spec/extended.gemspec +22 -0
  38. data/spec/dsl/project_gemspec_spec/extended.xml +86 -0
  39. data/spec/dsl/project_gemspec_spec/jars_and_poms.gemspec +21 -0
  40. data/spec/dsl/project_gemspec_spec/jars_and_poms.xml +82 -0
  41. data/spec/dsl/project_gemspec_spec/jars_and_poms_include_jars.xml +99 -0
  42. data/spec/dsl/project_gemspec_spec/maven-tools.gemspec +422 -0
  43. data/spec/dsl/project_gemspec_spec/maven-tools.xml +79 -0
  44. data/spec/dsl/project_gemspec_spec/no_gems.xml +57 -0
  45. data/spec/dsl/project_gemspec_spec/profile.xml +84 -0
  46. data/spec/dsl/project_gemspec_spec/snapshot.gemspec +17 -0
  47. data/spec/dsl/project_gemspec_spec/snapshot.xml +57 -0
  48. data/spec/gemfile/pom.xml +1 -1
  49. data/spec/gemfile_include_jars/pom.xml +16 -1
  50. data/spec/gemfile_with_access_to_model/pom.xml +1 -1
  51. data/spec/gemfile_with_custom_source/pom.xml +1 -1
  52. data/spec/gemfile_with_custom_source_and_custom_jarname/pom.xml +1 -1
  53. data/spec/gemfile_with_extras/pom.xml +16 -1
  54. data/spec/gemfile_with_groups/pom.xml +1 -1
  55. data/spec/gemfile_with_groups_and_lockfile/pom.xml +1 -1
  56. data/spec/gemfile_with_lock/pom.xml +1 -1
  57. data/spec/gemfile_with_path/pom.xml +2 -2
  58. data/spec/gemfile_with_platforms/pom.xml +1 -1
  59. data/spec/gemfile_with_source/pom.xml +1 -1
  60. data/spec/gemfile_with_source_and_custom_jarname/pom.xml +1 -1
  61. data/spec/gemfile_with_source_and_no_jar/pom.xml +1 -1
  62. data/spec/gemfile_with_test_group/pom.xml +1 -1
  63. data/spec/gemfile_without_gemspec/pom.xml +1 -1
  64. data/spec/gemspec/bouncy-castle-java.gemspec +1 -0
  65. data/spec/gemspec/pom.xml +18 -1
  66. data/spec/gemspec_in_profile/pom.xml +1 -1
  67. data/spec/gemspec_include_jars/pom.xml +16 -1
  68. data/spec/gemspec_no_rubygems_repo/pom.xml +1 -1
  69. data/spec/gemspec_prerelease/pom.xml +2 -2
  70. data/spec/gemspec_prerelease_snapshot/pom.xml +1 -1
  71. data/spec/gemspec_with_access_to_model/pom.xml +1 -1
  72. data/spec/gemspec_with_custom_source/pom.xml +1 -1
  73. data/spec/gemspec_with_custom_source_and_custom_jarname/pom.xml +1 -1
  74. data/spec/gemspec_with_extras/pom.xml +16 -1
  75. data/spec/gemspec_with_prereleased_dependency/pom.xml +1 -1
  76. data/spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml +1 -1
  77. data/spec/gemspec_with_source/pom.xml +1 -1
  78. data/spec/gemspec_with_source_and_custom_jarname/pom.xml +1 -1
  79. data/spec/gemspec_with_source_and_no_jar/pom.xml +1 -1
  80. data/spec/mavenfile/Mavenfile +1 -1
  81. data/spec/pom.xml +1 -1
  82. data/spec/pom_from_jarfile/pom.xml +0 -7
  83. data/spec/pom_from_jarfile_and_lock/Jarfile +3 -0
  84. data/spec/pom_from_jarfile_and_lock/pom.rb +5 -0
  85. data/spec/pom_from_jarfile_and_lock/pom.xml +37 -0
  86. data/spec/pom_from_jarfile_and_lock/pom2.xml +41 -0
  87. data/spec/pom_from_jarfile_and_skip_lock/Jarfile +3 -0
  88. data/spec/pom_from_jarfile_and_skip_lock/pom.rb +5 -0
  89. data/spec/pom_from_jarfile_and_skip_lock/pom.xml +31 -0
  90. data/spec/pom_from_jarfile_with_jruby/Jarfile +1 -0
  91. data/spec/pom_from_jarfile_with_jruby/pom.xml +0 -15
  92. data/spec/pom_maven_alternative_style/pom.rb +1 -1
  93. data/spec/pom_maven_hash_style/pom.rb +1 -1
  94. data/spec/pom_maven_style/pom.rb +1 -1
  95. metadata +79 -2
@@ -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.4</jruby.plugins.version>
35
+ <jruby.plugins.version>1.0.7</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.4</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.7</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -60,6 +60,21 @@
60
60
  </extensions>
61
61
  <directory>${basedir}/pkg</directory>
62
62
  <plugins>
63
+ <plugin>
64
+ <artifactId>maven-dependency-plugin</artifactId>
65
+ <executions>
66
+ <execution>
67
+ <phase>generate-test-resources</phase>
68
+ <goals>
69
+ <goal>copy-dependencies</goal>
70
+ </goals>
71
+ <configuration>
72
+ <outputDirectory>lib</outputDirectory>
73
+ <useRepositoryLayout>true</useRepositoryLayout>
74
+ </configuration>
75
+ </execution>
76
+ </executions>
77
+ </plugin>
63
78
  <plugin>
64
79
  <groupId>de.saumya.mojo</groupId>
65
80
  <artifactId>gem-maven-plugin</artifactId>
@@ -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.4</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.7</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -13,7 +13,7 @@
13
13
  <modelVersion>4.0.0</modelVersion>
14
14
  <groupId>rubygems</groupId>
15
15
  <artifactId>bouncy-castle-java</artifactId>
16
- <version>1.5.beta.1</version>
16
+ <version>1.5.beta.1-SNAPSHOT</version>
17
17
  <packaging>gem</packaging>
18
18
  <name>Gem redistribution of Bouncy Castle jars</name>
19
19
  <url>http://github.com/jruby/jruby/tree/master/gems/bouncy-castle-java/</url>
@@ -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.4</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.7</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.4</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.7</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.4</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.7</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.4</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.7</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.4</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.7</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.4</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.7</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>
@@ -71,6 +71,21 @@
71
71
  </resources>
72
72
  <directory>${basedir}/pkg</directory>
73
73
  <plugins>
74
+ <plugin>
75
+ <artifactId>maven-dependency-plugin</artifactId>
76
+ <executions>
77
+ <execution>
78
+ <phase>generate-test-resources</phase>
79
+ <goals>
80
+ <goal>copy-dependencies</goal>
81
+ </goals>
82
+ <configuration>
83
+ <outputDirectory>lib</outputDirectory>
84
+ <useRepositoryLayout>true</useRepositoryLayout>
85
+ </configuration>
86
+ </execution>
87
+ </executions>
88
+ </plugin>
74
89
  <plugin>
75
90
  <groupId>de.saumya.mojo</groupId>
76
91
  <artifactId>gem-maven-plugin</artifactId>
@@ -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.4</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.7</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.4</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.7</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.4</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.7</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.4</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.7</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.4</jruby.plugins.version>
33
+ <jruby.plugins.version>1.0.7</jruby.plugins.version>
34
34
  </properties>
35
35
  <dependencies>
36
36
  <dependency>
@@ -227,7 +227,7 @@ plugin :jar, '1.0', :inherited => true do
227
227
  end
228
228
 
229
229
  jruby_plugin :gem, '1.0.0' do
230
- gem :bundler, '1.6.2'
230
+ gem :bundler, '1.7.7'
231
231
  end
232
232
 
233
233
  phase :package do
@@ -355,7 +355,7 @@
355
355
  <dependency>
356
356
  <groupId>rubygems</groupId>
357
357
  <artifactId>bundler</artifactId>
358
- <version>1.6.2</version>
358
+ <version>1.7.7</version>
359
359
  <type>gem</type>
360
360
  </dependency>
361
361
  </dependencies>
@@ -28,12 +28,5 @@
28
28
  <scope>system</scope>
29
29
  <systemPath>myfirst.jar</systemPath>
30
30
  </dependency>
31
- <dependency>
32
- <groupId>org.jruby</groupId>
33
- <artifactId>jruby-noasm</artifactId>
34
- <version>1.7.13</version>
35
- <type>pom</type>
36
- <scope>provided</scope>
37
- </dependency>
38
31
  </dependencies>
39
32
  </project>
@@ -0,0 +1,3 @@
1
+ jar 'junit:junit', '~> 4.11'
2
+
3
+ jar 'org.slf4j:simple-slf4', '~> 1.6.4'
@@ -0,0 +1,5 @@
1
+ project 'example from jarfile' do
2
+
3
+ jarfile
4
+ #properties 'tesla.dump.pom' => 'pom2.xml'
5
+ end
@@ -0,0 +1,37 @@
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>pom_from_jarfile_and_lock</artifactId>
16
+ <version>0.0.0</version>
17
+ <name>example from jarfile</name>
18
+ <dependencies>
19
+ <dependency>
20
+ <groupId>org.slf4j</groupId>
21
+ <artifactId>simple-slf4</artifactId>
22
+ <version>[1.6.4,1.6.99999]</version>
23
+ </dependency>
24
+ <dependency>
25
+ <groupId>org.hamcrest</groupId>
26
+ <artifactId>hamcrest-core</artifactId>
27
+ <version>1.3</version>
28
+ <scope>test</scope>
29
+ </dependency>
30
+ <dependency>
31
+ <groupId>junit</groupId>
32
+ <artifactId>junit</artifactId>
33
+ <version>4.11</version>
34
+ <scope>test</scope>
35
+ </dependency>
36
+ </dependencies>
37
+ </project>
@@ -0,0 +1,41 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <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"
3
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4
+ <modelVersion>4.0.0</modelVersion>
5
+ <groupId>no_group_id_given</groupId>
6
+ <artifactId>pom_from_jarfile</artifactId>
7
+ <version>0.0.0</version>
8
+ <name>example from jarfile</name>
9
+ <properties>
10
+ <tesla.dump.pom>pom2.xml</tesla.dump.pom>
11
+ </properties>
12
+ <dependencies>
13
+ <dependency>
14
+ <groupId>org.bouncycastle</groupId>
15
+ <artifactId>bcpkix-jdk15on</artifactId>
16
+ <version>1.49</version>
17
+ </dependency>
18
+ <dependency>
19
+ <groupId>junit</groupId>
20
+ <artifactId>junit</artifactId>
21
+ <version>4.11</version>
22
+ </dependency>
23
+ <dependency>
24
+ <groupId>org.hamcrest</groupId>
25
+ <artifactId>hamcrest-core</artifactId>
26
+ <version>1.3</version>
27
+ </dependency>
28
+ <dependency>
29
+ <groupId>org.bouncycastle</groupId>
30
+ <artifactId>bcprov-jdk15on</artifactId>
31
+ <version>1.49</version>
32
+ </dependency>
33
+ <dependency>
34
+ <groupId>org.jruby</groupId>
35
+ <artifactId>jruby</artifactId>
36
+ <version>1.7.13</version>
37
+ <type>pom</type>
38
+ <scope>provided</scope>
39
+ </dependency>
40
+ </dependencies>
41
+ </project>
@@ -0,0 +1,3 @@
1
+ jar 'junit:junit', '~> 4.11', :scope => :test
2
+
3
+ jar 'org.slf4j:simple-slf4', '~> 1.6.4'
@@ -0,0 +1,5 @@
1
+ project 'example from jarfile' do
2
+
3
+ jarfile :skip_lock => true
4
+
5
+ end
@@ -0,0 +1,31 @@
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>pom_from_jarfile_and_skip_lock</artifactId>
16
+ <version>0.0.0</version>
17
+ <name>example from jarfile</name>
18
+ <dependencies>
19
+ <dependency>
20
+ <groupId>junit</groupId>
21
+ <artifactId>junit</artifactId>
22
+ <version>[4.11,4.99999]</version>
23
+ <scope>test</scope>
24
+ </dependency>
25
+ <dependency>
26
+ <groupId>org.slf4j</groupId>
27
+ <artifactId>simple-slf4</artifactId>
28
+ <version>[1.6.4,1.6.99999]</version>
29
+ </dependency>
30
+ </dependencies>
31
+ </project>
@@ -1,3 +1,4 @@
1
+ # not used anymore
1
2
  jruby '1.7.16' do
2
3
  no_asm true
3
4
  scope :compile
@@ -14,19 +14,4 @@
14
14
  <artifactId>pom_from_jarfile_with_jruby</artifactId>
15
15
  <version>0.0.0</version>
16
16
  <name>example from jarfile</name>
17
- <dependencies>
18
- <dependency>
19
- <groupId>joda-time</groupId>
20
- <artifactId>joda-time</artifactId>
21
- <version>2.6</version>
22
- <scope>compile</scope>
23
- </dependency>
24
- <dependency>
25
- <groupId>org.jruby</groupId>
26
- <artifactId>jruby-noasm</artifactId>
27
- <version>1.7.16</version>
28
- <type>pom</type>
29
- <scope>compile</scope>
30
- </dependency>
31
- </dependencies>
32
17
  </project>
@@ -167,7 +167,7 @@ project 'my name', 'example.com' do
167
167
  end
168
168
 
169
169
  jruby_plugin :gem, '1.0.0' do
170
- gem :bundler, '1.6.2'
170
+ gem :bundler, '1.7.7'
171
171
  end
172
172
 
173
173
  phase :package do
@@ -187,7 +187,7 @@ project :name => 'my name', :url => 'example.com' do
187
187
  :finalName => :testing )
188
188
 
189
189
  jruby_plugin :gem, '1.0.0' do
190
- gem :bundler, '1.6.2'
190
+ gem :bundler, '1.7.7'
191
191
  end
192
192
 
193
193
  plugin :antrun do
@@ -255,7 +255,7 @@ project do
255
255
  dependency do
256
256
  group_id 'rubygems'
257
257
  artifact_id 'bundler'
258
- version '1.6.2'
258
+ version '1.7.7'
259
259
  type :gem
260
260
  end
261
261
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: maven-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Meier
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-24 00:00:00.000000000 Z
11
+ date: 2014-11-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: virtus
@@ -67,6 +67,7 @@ files:
67
67
  - lib/maven-tools.rb
68
68
  - lib/maven/tools/visitor.rb
69
69
  - lib/maven/tools/version.rb
70
+ - lib/maven/tools/project.rb
70
71
  - lib/maven/tools/artifact.rb
71
72
  - lib/maven/tools/model.rb
72
73
  - lib/maven/tools/versions.rb
@@ -74,14 +75,20 @@ files:
74
75
  - lib/maven/tools/gemfile_lock.rb
75
76
  - lib/maven/tools/dsl.rb
76
77
  - lib/maven/tools/jarfile.rb
78
+ - lib/maven/tools/licenses.rb
77
79
  - lib/maven/tools/pom.rb
78
80
  - lib/maven/tools/coordinate.rb
81
+ - lib/maven/tools/dsl/jarfile_lock.rb
82
+ - lib/maven/tools/dsl/project_gemspec.rb
83
+ - lib/maven/tools/dsl/profile_gemspec.rb
84
+ - lib/maven/tools/dsl/gemspec.rb
79
85
  - lib/maven/tools/dsl/models.rb
80
86
  - lib/maven/tools/dsl/dependency_dsl.rb
81
87
  - lib/maven/tools/dsl/jarfile.rb
82
88
  - lib/maven/tools/dsl/jruby_dsl.rb
83
89
  - lib/maven/tools/dsl/exclusions_dsl.rb
84
90
  - lib/maven/tools/dsl/options.rb
91
+ - lib/maven/tools/dsl/gem_support.rb
85
92
  - spec/artifact_spec.rb
86
93
  - spec/jarfile_spec.rb
87
94
  - spec/coordinate_spec.rb
@@ -97,9 +104,15 @@ files:
97
104
  - spec/pom_from_jarfile/pom.rb
98
105
  - spec/gemfile_include_jars/bouncy-castle-version.rb
99
106
  - spec/gemfile/bouncy-castle-version.rb
107
+ - spec/pom_from_jarfile_and_lock/pom.rb
100
108
  - spec/pom_with_execute/pom.rb
101
109
  - spec/gemspec/bouncy-castle-version.rb
102
110
  - spec/gemspec_with_source/bouncy-castle-version.rb
111
+ - spec/dsl/gemspec_spec.rb
112
+ - spec/dsl/project_gemspec_spec.rb
113
+ - spec/dsl/profile_gemspec_spec.rb
114
+ - spec/dsl/jarfile_lock_spec.rb
115
+ - spec/pom_from_jarfile_and_skip_lock/pom.rb
103
116
  - spec/pom_maven_hash_style/pom.rb
104
117
  - spec/gemspec_include_jars/bouncy-castle-version.rb
105
118
  - spec/gemspec_with_extras/bouncy-castle-version.rb
@@ -128,6 +141,8 @@ files:
128
141
  - spec/gemspec_with_access_to_model/pom.xml
129
142
  - spec/gemfile/pom.xml
130
143
  - spec/gemspec_with_source_and_custom_jarname/pom.xml
144
+ - spec/pom_from_jarfile_and_lock/pom2.xml
145
+ - spec/pom_from_jarfile_and_lock/pom.xml
131
146
  - spec/pom_with_execute/pom.xml
132
147
  - spec/gemspec/pom.xml
133
148
  - spec/gemspec_with_custom_source/pom.xml
@@ -138,7 +153,23 @@ files:
138
153
  - spec/gemspec_prerelease/pom.xml
139
154
  - spec/gemfile_with_groups/pom.xml
140
155
  - spec/gemfile_with_custom_source/pom.xml
156
+ - spec/dsl/profile_gemspec_spec/no_gems.xml
157
+ - spec/dsl/profile_gemspec_spec/maven-tools.xml
158
+ - spec/dsl/profile_gemspec_spec/jars_and_poms_include_jars.xml
159
+ - spec/dsl/profile_gemspec_spec/snapshot.xml
160
+ - spec/dsl/profile_gemspec_spec/jars_and_poms.xml
161
+ - spec/dsl/gemspec_spec/maven-tools.xml
162
+ - spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml
163
+ - spec/dsl/gemspec_spec/jars_and_poms.xml
164
+ - spec/dsl/project_gemspec_spec/no_gems.xml
165
+ - spec/dsl/project_gemspec_spec/maven-tools.xml
166
+ - spec/dsl/project_gemspec_spec/jars_and_poms_include_jars.xml
167
+ - spec/dsl/project_gemspec_spec/profile.xml
168
+ - spec/dsl/project_gemspec_spec/snapshot.xml
169
+ - spec/dsl/project_gemspec_spec/extended.xml
170
+ - spec/dsl/project_gemspec_spec/jars_and_poms.xml
141
171
  - spec/gemspec_with_prereleased_dependency/pom.xml
172
+ - spec/pom_from_jarfile_and_skip_lock/pom.xml
142
173
  - spec/gemfile_without_gemspec/pom.xml
143
174
  - spec/gemfile_with_custom_source_and_custom_jarname/pom.xml
144
175
  - spec/gemspec_include_jars/pom.xml
@@ -173,6 +204,7 @@ files:
173
204
  - spec/gemfile/Mavenfile
174
205
  - spec/gemfile/Gemfile
175
206
  - spec/gemspec_with_source_and_custom_jarname/Mavenfile
207
+ - spec/pom_from_jarfile_and_lock/Jarfile
176
208
  - spec/mavenfile/Mavenfile
177
209
  - spec/gemspec/Mavenfile
178
210
  - spec/gemspec_with_custom_source/Mavenfile
@@ -189,6 +221,7 @@ files:
189
221
  - spec/gemfile_with_custom_source/Mavenfile
190
222
  - spec/gemfile_with_custom_source/Gemfile
191
223
  - spec/gemspec_with_prereleased_dependency/Mavenfile
224
+ - spec/pom_from_jarfile_and_skip_lock/Jarfile
192
225
  - spec/gemfile_without_gemspec/Mavenfile
193
226
  - spec/gemfile_without_gemspec/Gemfile
194
227
  - spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile
@@ -232,6 +265,15 @@ files:
232
265
  - spec/gemspec_with_source/bouncy-castle-java.gemspec
233
266
  - spec/gemspec_prerelease/bouncy-castle-java.gemspec
234
267
  - spec/gemfile_with_custom_source/bouncy-castle-java.gemspec
268
+ - spec/dsl/profile_gemspec_spec/snapshot.gemspec
269
+ - spec/dsl/profile_gemspec_spec/jars_and_poms.gemspec
270
+ - spec/dsl/profile_gemspec_spec/maven-tools.gemspec
271
+ - spec/dsl/gemspec_spec/jars_and_poms.gemspec
272
+ - spec/dsl/gemspec_spec/maven-tools.gemspec
273
+ - spec/dsl/project_gemspec_spec/snapshot.gemspec
274
+ - spec/dsl/project_gemspec_spec/extended.gemspec
275
+ - spec/dsl/project_gemspec_spec/jars_and_poms.gemspec
276
+ - spec/dsl/project_gemspec_spec/maven-tools.gemspec
235
277
  - spec/gemspec_with_prereleased_dependency/bouncy-castle-java.gemspec
236
278
  - spec/gemfile_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
237
279
  - spec/gemspec_include_jars/bouncy-castle-java.gemspec
@@ -278,9 +320,15 @@ test_files:
278
320
  - spec/pom_from_jarfile/pom.rb
279
321
  - spec/gemfile_include_jars/bouncy-castle-version.rb
280
322
  - spec/gemfile/bouncy-castle-version.rb
323
+ - spec/pom_from_jarfile_and_lock/pom.rb
281
324
  - spec/pom_with_execute/pom.rb
282
325
  - spec/gemspec/bouncy-castle-version.rb
283
326
  - spec/gemspec_with_source/bouncy-castle-version.rb
327
+ - spec/dsl/gemspec_spec.rb
328
+ - spec/dsl/project_gemspec_spec.rb
329
+ - spec/dsl/profile_gemspec_spec.rb
330
+ - spec/dsl/jarfile_lock_spec.rb
331
+ - spec/pom_from_jarfile_and_skip_lock/pom.rb
284
332
  - spec/pom_maven_hash_style/pom.rb
285
333
  - spec/gemspec_include_jars/bouncy-castle-version.rb
286
334
  - spec/gemspec_with_extras/bouncy-castle-version.rb
@@ -307,6 +355,8 @@ test_files:
307
355
  - spec/gemspec_with_access_to_model/pom.xml
308
356
  - spec/gemfile/pom.xml
309
357
  - spec/gemspec_with_source_and_custom_jarname/pom.xml
358
+ - spec/pom_from_jarfile_and_lock/pom2.xml
359
+ - spec/pom_from_jarfile_and_lock/pom.xml
310
360
  - spec/pom_with_execute/pom.xml
311
361
  - spec/gemspec/pom.xml
312
362
  - spec/gemspec_with_custom_source/pom.xml
@@ -317,7 +367,23 @@ test_files:
317
367
  - spec/gemspec_prerelease/pom.xml
318
368
  - spec/gemfile_with_groups/pom.xml
319
369
  - spec/gemfile_with_custom_source/pom.xml
370
+ - spec/dsl/profile_gemspec_spec/no_gems.xml
371
+ - spec/dsl/profile_gemspec_spec/maven-tools.xml
372
+ - spec/dsl/profile_gemspec_spec/jars_and_poms_include_jars.xml
373
+ - spec/dsl/profile_gemspec_spec/snapshot.xml
374
+ - spec/dsl/profile_gemspec_spec/jars_and_poms.xml
375
+ - spec/dsl/gemspec_spec/maven-tools.xml
376
+ - spec/dsl/gemspec_spec/jars_and_poms_include_jars.xml
377
+ - spec/dsl/gemspec_spec/jars_and_poms.xml
378
+ - spec/dsl/project_gemspec_spec/no_gems.xml
379
+ - spec/dsl/project_gemspec_spec/maven-tools.xml
380
+ - spec/dsl/project_gemspec_spec/jars_and_poms_include_jars.xml
381
+ - spec/dsl/project_gemspec_spec/profile.xml
382
+ - spec/dsl/project_gemspec_spec/snapshot.xml
383
+ - spec/dsl/project_gemspec_spec/extended.xml
384
+ - spec/dsl/project_gemspec_spec/jars_and_poms.xml
320
385
  - spec/gemspec_with_prereleased_dependency/pom.xml
386
+ - spec/pom_from_jarfile_and_skip_lock/pom.xml
321
387
  - spec/gemfile_without_gemspec/pom.xml
322
388
  - spec/gemfile_with_custom_source_and_custom_jarname/pom.xml
323
389
  - spec/gemspec_include_jars/pom.xml
@@ -352,6 +418,7 @@ test_files:
352
418
  - spec/gemfile/Mavenfile
353
419
  - spec/gemfile/Gemfile
354
420
  - spec/gemspec_with_source_and_custom_jarname/Mavenfile
421
+ - spec/pom_from_jarfile_and_lock/Jarfile
355
422
  - spec/mavenfile/Mavenfile
356
423
  - spec/gemspec/Mavenfile
357
424
  - spec/gemspec_with_custom_source/Mavenfile
@@ -368,6 +435,7 @@ test_files:
368
435
  - spec/gemfile_with_custom_source/Mavenfile
369
436
  - spec/gemfile_with_custom_source/Gemfile
370
437
  - spec/gemspec_with_prereleased_dependency/Mavenfile
438
+ - spec/pom_from_jarfile_and_skip_lock/Jarfile
371
439
  - spec/gemfile_without_gemspec/Mavenfile
372
440
  - spec/gemfile_without_gemspec/Gemfile
373
441
  - spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile
@@ -411,6 +479,15 @@ test_files:
411
479
  - spec/gemspec_with_source/bouncy-castle-java.gemspec
412
480
  - spec/gemspec_prerelease/bouncy-castle-java.gemspec
413
481
  - spec/gemfile_with_custom_source/bouncy-castle-java.gemspec
482
+ - spec/dsl/profile_gemspec_spec/snapshot.gemspec
483
+ - spec/dsl/profile_gemspec_spec/jars_and_poms.gemspec
484
+ - spec/dsl/profile_gemspec_spec/maven-tools.gemspec
485
+ - spec/dsl/gemspec_spec/jars_and_poms.gemspec
486
+ - spec/dsl/gemspec_spec/maven-tools.gemspec
487
+ - spec/dsl/project_gemspec_spec/snapshot.gemspec
488
+ - spec/dsl/project_gemspec_spec/extended.gemspec
489
+ - spec/dsl/project_gemspec_spec/jars_and_poms.gemspec
490
+ - spec/dsl/project_gemspec_spec/maven-tools.gemspec
414
491
  - spec/gemspec_with_prereleased_dependency/bouncy-castle-java.gemspec
415
492
  - spec/gemfile_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec
416
493
  - spec/gemspec_include_jars/bouncy-castle-java.gemspec