maven-tools 1.0.0.rc2 → 1.0.0.rc3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (131) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +8 -0
  3. data/Mavenfile +22 -0
  4. data/Rakefile +44 -0
  5. data/lib/maven/tools/coordinate.rb +6 -1
  6. data/lib/maven/tools/dsl.rb +116 -42
  7. data/lib/maven/tools/model.rb +336 -334
  8. data/lib/maven/tools/pom.rb +4 -5
  9. data/lib/maven/tools/version.rb +1 -1
  10. data/lib/maven/tools/versions.rb +4 -7
  11. data/lib/maven/tools/visitor.rb +22 -7
  12. data/maven-tools.gemspec +39 -0
  13. data/spec/artifact_spec.rb +30 -10
  14. data/spec/coordinate_spec.rb +1 -1
  15. data/spec/gemfile/Gemfile +7 -0
  16. data/spec/gemfile/Mavenfile +5 -0
  17. data/spec/gemfile/bouncy-castle-java.gemspec +20 -0
  18. data/spec/gemfile/pom.xml +79 -0
  19. data/spec/gemfile_include_jars/Gemfile +5 -0
  20. data/spec/gemfile_include_jars/Mavenfile +5 -0
  21. data/spec/gemfile_include_jars/bouncy-castle-java.gemspec +20 -0
  22. data/spec/gemfile_include_jars/pom.xml +74 -0
  23. data/spec/gemfile_with_access_to_model/Gemfile +5 -0
  24. data/spec/gemfile_with_access_to_model/Mavenfile +7 -0
  25. data/spec/gemfile_with_access_to_model/bouncy-castle-java.gemspec +16 -0
  26. data/spec/gemfile_with_access_to_model/pom.xml +62 -0
  27. data/spec/gemfile_with_custom_source/Gemfile +5 -0
  28. data/spec/gemfile_with_custom_source/Mavenfile +5 -0
  29. data/spec/gemfile_with_custom_source/bouncy-castle-java.gemspec +19 -0
  30. data/spec/gemfile_with_custom_source/pom.xml +107 -0
  31. data/spec/gemfile_with_custom_source/src/java/.keep +0 -0
  32. data/spec/gemfile_with_custom_source_and_custom_jarname/Gemfile +5 -0
  33. data/spec/gemfile_with_custom_source_and_custom_jarname/Mavenfile +5 -0
  34. data/spec/gemfile_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec +18 -0
  35. data/spec/gemfile_with_custom_source_and_custom_jarname/pom.xml +107 -0
  36. data/spec/gemfile_with_custom_source_and_custom_jarname/src/java/.keep +0 -0
  37. data/spec/gemfile_with_extras/Gemfile +5 -0
  38. data/spec/gemfile_with_extras/Mavenfile +21 -0
  39. data/spec/gemfile_with_extras/bouncy-castle-java.gemspec +20 -0
  40. data/spec/gemfile_with_extras/pom.xml +106 -0
  41. data/spec/gemfile_with_groups/Gemfile +9 -0
  42. data/spec/gemfile_with_groups/Mavenfile +5 -0
  43. data/spec/gemfile_with_groups/pom.xml +44 -0
  44. data/spec/gemfile_with_groups_and_lockfile/Gemfile +10 -0
  45. data/spec/gemfile_with_groups_and_lockfile/Gemfile.lock +34 -0
  46. data/spec/gemfile_with_groups_and_lockfile/Mavenfile +5 -0
  47. data/spec/gemfile_with_groups_and_lockfile/pom.xml +155 -0
  48. data/spec/gemfile_with_lock/Gemfile +7 -0
  49. data/spec/gemfile_with_lock/Gemfile.lock +42 -0
  50. data/spec/gemfile_with_lock/Mavenfile +5 -0
  51. data/spec/gemfile_with_lock/bouncy-castle-java.gemspec +22 -0
  52. data/spec/gemfile_with_lock/pom.xml +197 -0
  53. data/spec/gemfile_with_path/Gemfile +7 -0
  54. data/spec/gemfile_with_path/Mavenfile +5 -0
  55. data/spec/gemfile_with_path/pom.xml +63 -0
  56. data/spec/gemfile_with_source/Mavenfile +5 -0
  57. data/spec/gemfile_with_source/bouncy-castle-java.gemspec +21 -0
  58. data/spec/gemfile_with_source/pom.xml +103 -0
  59. data/spec/gemfile_with_source/src/main/java/.keep +0 -0
  60. data/spec/gemfile_with_source_and_custom_jarname/Gemfile +5 -0
  61. data/spec/gemfile_with_source_and_custom_jarname/Mavenfile +5 -0
  62. data/spec/gemfile_with_source_and_custom_jarname/bouncy-castle-java.gemspec +19 -0
  63. data/spec/gemfile_with_source_and_custom_jarname/pom.xml +106 -0
  64. data/spec/gemfile_with_source_and_custom_jarname/src/main/java/.keep +0 -0
  65. data/spec/gemfile_with_source_and_no_jar/Gemfile +5 -0
  66. data/spec/gemfile_with_source_and_no_jar/Mavenfile +5 -0
  67. data/spec/gemfile_with_source_and_no_jar/bouncy-castle-java.gemspec +19 -0
  68. data/spec/gemfile_with_source_and_no_jar/pom.xml +76 -0
  69. data/spec/gemfile_with_source_and_no_jar/src/main/java/.keep +0 -0
  70. data/spec/gemspec/Mavenfile +5 -0
  71. data/spec/gemspec/bouncy-castle-java.gemspec +20 -0
  72. data/spec/gemspec/pom.xml +73 -0
  73. data/spec/gemspec_in_profile/Mavenfile +7 -0
  74. data/spec/gemspec_in_profile/bouncy-castle-java.gemspec +20 -0
  75. data/spec/gemspec_in_profile/pom.xml +57 -0
  76. data/spec/gemspec_include_jars/Mavenfile +5 -0
  77. data/spec/gemspec_include_jars/bouncy-castle-java.gemspec +20 -0
  78. data/spec/gemspec_include_jars/pom.xml +74 -0
  79. data/spec/gemspec_no_rubygems_repo/Mavenfile +5 -0
  80. data/spec/gemspec_no_rubygems_repo/bouncy-castle-java.gemspec +17 -0
  81. data/spec/gemspec_no_rubygems_repo/pom.xml +64 -0
  82. data/spec/gemspec_prerelease/Mavenfile +5 -0
  83. data/spec/gemspec_prerelease/bouncy-castle-java.gemspec +17 -0
  84. data/spec/gemspec_prerelease/pom.xml +70 -0
  85. data/spec/gemspec_prerelease_snapshot/Mavenfile +5 -0
  86. data/spec/gemspec_prerelease_snapshot/bouncy-castle-java.gemspec +17 -0
  87. data/spec/gemspec_prerelease_snapshot/pom.xml +70 -0
  88. data/spec/gemspec_with_access_to_model/Mavenfile +7 -0
  89. data/spec/gemspec_with_access_to_model/bouncy-castle-java.gemspec +16 -0
  90. data/spec/gemspec_with_access_to_model/pom.xml +62 -0
  91. data/spec/gemspec_with_custom_source/Mavenfile +5 -0
  92. data/spec/gemspec_with_custom_source/bouncy-castle-java.gemspec +19 -0
  93. data/spec/gemspec_with_custom_source/pom.xml +107 -0
  94. data/spec/gemspec_with_custom_source/src/java/.keep +0 -0
  95. data/spec/gemspec_with_custom_source_and_custom_jarname/Mavenfile +5 -0
  96. data/spec/gemspec_with_custom_source_and_custom_jarname/bouncy-castle-java.gemspec +18 -0
  97. data/spec/gemspec_with_custom_source_and_custom_jarname/pom.xml +107 -0
  98. data/spec/gemspec_with_custom_source_and_custom_jarname/src/java/.keep +0 -0
  99. data/spec/gemspec_with_extras/Mavenfile +21 -0
  100. data/spec/gemspec_with_extras/bouncy-castle-java.gemspec +20 -0
  101. data/spec/gemspec_with_extras/pom.xml +106 -0
  102. data/spec/gemspec_with_prereleased_dependency/Mavenfile +5 -0
  103. data/spec/gemspec_with_prereleased_dependency/bouncy-castle-java.gemspec +17 -0
  104. data/spec/gemspec_with_prereleased_dependency/pom.xml +80 -0
  105. data/spec/gemspec_with_prereleased_dependency_and_no_repo/Mavenfile +5 -0
  106. data/spec/gemspec_with_prereleased_dependency_and_no_repo/bouncy-castle-java.gemspec +17 -0
  107. data/spec/gemspec_with_prereleased_dependency_and_no_repo/pom.xml +76 -0
  108. data/spec/gemspec_with_source/Mavenfile +5 -0
  109. data/spec/gemspec_with_source/bouncy-castle-java.gemspec +21 -0
  110. data/spec/gemspec_with_source/pom.xml +103 -0
  111. data/spec/gemspec_with_source/src/main/java/.keep +0 -0
  112. data/spec/gemspec_with_source_and_custom_jarname/Mavenfile +5 -0
  113. data/spec/gemspec_with_source_and_custom_jarname/bouncy-castle-java.gemspec +19 -0
  114. data/spec/gemspec_with_source_and_custom_jarname/pom.xml +106 -0
  115. data/spec/gemspec_with_source_and_custom_jarname/src/main/java/.keep +0 -0
  116. data/spec/gemspec_with_source_and_no_jar/Mavenfile +5 -0
  117. data/spec/gemspec_with_source_and_no_jar/bouncy-castle-java.gemspec +19 -0
  118. data/spec/gemspec_with_source_and_no_jar/pom.xml +76 -0
  119. data/spec/gemspec_with_source_and_no_jar/src/main/java/.keep +0 -0
  120. data/spec/mavenfile/Mavenfile +894 -0
  121. data/spec/my/my-1.0.gem +0 -0
  122. data/spec/my/my.gemspec +10 -0
  123. data/spec/pom.xml +423 -0
  124. data/spec/pom_from_jarfile/Jarfile +3 -0
  125. data/spec/pom_from_jarfile/pom.xml +39 -0
  126. data/spec/pom_maven_alternative_style/pom.rb +57 -6
  127. data/spec/pom_maven_hash_style/pom.rb +56 -175
  128. data/spec/pom_maven_style/pom.rb +59 -6
  129. data/spec/pom_spec.rb +1 -1
  130. data/spec/pom_with_execute/pom.xml +92 -0
  131. metadata +246 -2
@@ -0,0 +1,9 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ group :test do
4
+ gem 'rspec', '2.13.0'
5
+ end
6
+
7
+ gem 'copyright-headers', '1.0.3', :group => :development
8
+
9
+ # vim: syntax=Ruby
@@ -0,0 +1,5 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ gemfile
4
+
5
+ # vim: syntax=Ruby
@@ -0,0 +1,44 @@
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>dummy</groupId>
15
+ <artifactId>gemfile_with_groups</artifactId>
16
+ <version>0.0.0</version>
17
+ <name>gemfile_with_groups</name>
18
+ <properties>
19
+ <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
20
+ <jruby.plugins.version>1.0.1</jruby.plugins.version>
21
+ </properties>
22
+ <dependencies>
23
+ <dependency>
24
+ <groupId>rubygems</groupId>
25
+ <artifactId>rspec</artifactId>
26
+ <version>2.13.0</version>
27
+ <type>gem</type>
28
+ <scope>test</scope>
29
+ </dependency>
30
+ <dependency>
31
+ <groupId>rubygems</groupId>
32
+ <artifactId>copyright-headers</artifactId>
33
+ <version>1.0.3</version>
34
+ <type>gem</type>
35
+ <scope>provided</scope>
36
+ </dependency>
37
+ </dependencies>
38
+ <repositories>
39
+ <repository>
40
+ <id>rubygems-releases</id>
41
+ <url>http://rubygems-proxy.torquebox.org/releases</url>
42
+ </repository>
43
+ </repositories>
44
+ </project>
@@ -0,0 +1,10 @@
1
+ #-*- mode: ruby -*-
2
+ source 'https://rubygems.org'
3
+
4
+ group :test do
5
+ gem 'rspec', '2.13.0'
6
+ end
7
+
8
+ gem 'copyright-header', '1.0.12', :group => :development
9
+
10
+ # vim: syntax=Ruby
@@ -0,0 +1,34 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ charlock_holmes (0.6.9.4)
5
+ copyright-header (1.0.12)
6
+ github-linguist (~> 2.6.7)
7
+ diff-lcs (1.2.5)
8
+ escape_utils (0.3.2)
9
+ github-linguist (2.6.7)
10
+ charlock_holmes (~> 0.6.6)
11
+ escape_utils (~> 0.3.1)
12
+ mime-types (~> 1.19)
13
+ pygments.rb (~> 0.4.2)
14
+ mime-types (1.25.1)
15
+ posix-spawn (0.3.8)
16
+ pygments.rb (0.4.2)
17
+ posix-spawn (~> 0.3.6)
18
+ yajl-ruby (~> 1.1.0)
19
+ rspec (2.13.0)
20
+ rspec-core (~> 2.13.0)
21
+ rspec-expectations (~> 2.13.0)
22
+ rspec-mocks (~> 2.13.0)
23
+ rspec-core (2.13.1)
24
+ rspec-expectations (2.13.0)
25
+ diff-lcs (>= 1.1.3, < 2.0)
26
+ rspec-mocks (2.13.1)
27
+ yajl-ruby (1.1.0)
28
+
29
+ PLATFORMS
30
+ ruby
31
+
32
+ DEPENDENCIES
33
+ copyright-header (= 1.0.12)
34
+ rspec (= 2.13.0)
@@ -0,0 +1,5 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ gemfile
4
+
5
+ # vim: syntax=Ruby
@@ -0,0 +1,155 @@
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>dummy</groupId>
15
+ <artifactId>gemfile_with_groups_and_lockfile</artifactId>
16
+ <version>0.0.0</version>
17
+ <name>gemfile_with_groups_and_lockfile</name>
18
+ <properties>
19
+ <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
20
+ <jruby.plugins.version>1.0.1</jruby.plugins.version>
21
+ </properties>
22
+ <repositories>
23
+ <repository>
24
+ <id>rubygems-releases</id>
25
+ <url>http://rubygems-proxy.torquebox.org/releases</url>
26
+ </repository>
27
+ </repositories>
28
+ <profiles>
29
+ <profile>
30
+ <id>gemfile</id>
31
+ <activation>
32
+ <file>
33
+ <missing>Gemfile.lock</missing>
34
+ </file>
35
+ </activation>
36
+ <dependencies>
37
+ <dependency>
38
+ <groupId>rubygems</groupId>
39
+ <artifactId>rspec</artifactId>
40
+ <version>2.13.0</version>
41
+ <type>gem</type>
42
+ <scope>test</scope>
43
+ </dependency>
44
+ <dependency>
45
+ <groupId>rubygems</groupId>
46
+ <artifactId>copyright-header</artifactId>
47
+ <version>1.0.12</version>
48
+ <type>gem</type>
49
+ <scope>provided</scope>
50
+ </dependency>
51
+ </dependencies>
52
+ </profile>
53
+ <profile>
54
+ <id>gemfile_lock</id>
55
+ <activation>
56
+ <file>
57
+ <exists>Gemfile.lock</exists>
58
+ </file>
59
+ </activation>
60
+ <dependencies>
61
+ <dependency>
62
+ <groupId>rubygems</groupId>
63
+ <artifactId>copyright-header</artifactId>
64
+ <version>1.0.12</version>
65
+ <type>gem</type>
66
+ <scope>provided</scope>
67
+ </dependency>
68
+ <dependency>
69
+ <groupId>rubygems</groupId>
70
+ <artifactId>github-linguist</artifactId>
71
+ <version>2.6.7</version>
72
+ <type>gem</type>
73
+ <scope>provided</scope>
74
+ </dependency>
75
+ <dependency>
76
+ <groupId>rubygems</groupId>
77
+ <artifactId>charlock_holmes</artifactId>
78
+ <version>0.6.9.4</version>
79
+ <type>gem</type>
80
+ <scope>provided</scope>
81
+ </dependency>
82
+ <dependency>
83
+ <groupId>rubygems</groupId>
84
+ <artifactId>escape_utils</artifactId>
85
+ <version>0.3.2</version>
86
+ <type>gem</type>
87
+ <scope>provided</scope>
88
+ </dependency>
89
+ <dependency>
90
+ <groupId>rubygems</groupId>
91
+ <artifactId>mime-types</artifactId>
92
+ <version>1.25.1</version>
93
+ <type>gem</type>
94
+ <scope>provided</scope>
95
+ </dependency>
96
+ <dependency>
97
+ <groupId>rubygems</groupId>
98
+ <artifactId>pygments.rb</artifactId>
99
+ <version>0.4.2</version>
100
+ <type>gem</type>
101
+ <scope>provided</scope>
102
+ </dependency>
103
+ <dependency>
104
+ <groupId>rubygems</groupId>
105
+ <artifactId>posix-spawn</artifactId>
106
+ <version>0.3.8</version>
107
+ <type>gem</type>
108
+ <scope>provided</scope>
109
+ </dependency>
110
+ <dependency>
111
+ <groupId>rubygems</groupId>
112
+ <artifactId>yajl-ruby</artifactId>
113
+ <version>1.1.0</version>
114
+ <type>gem</type>
115
+ <scope>provided</scope>
116
+ </dependency>
117
+ <dependency>
118
+ <groupId>rubygems</groupId>
119
+ <artifactId>rspec</artifactId>
120
+ <version>2.13.0</version>
121
+ <type>gem</type>
122
+ <scope>test</scope>
123
+ </dependency>
124
+ <dependency>
125
+ <groupId>rubygems</groupId>
126
+ <artifactId>rspec-core</artifactId>
127
+ <version>2.13.1</version>
128
+ <type>gem</type>
129
+ <scope>test</scope>
130
+ </dependency>
131
+ <dependency>
132
+ <groupId>rubygems</groupId>
133
+ <artifactId>rspec-expectations</artifactId>
134
+ <version>2.13.0</version>
135
+ <type>gem</type>
136
+ <scope>test</scope>
137
+ </dependency>
138
+ <dependency>
139
+ <groupId>rubygems</groupId>
140
+ <artifactId>diff-lcs</artifactId>
141
+ <version>1.2.5</version>
142
+ <type>gem</type>
143
+ <scope>test</scope>
144
+ </dependency>
145
+ <dependency>
146
+ <groupId>rubygems</groupId>
147
+ <artifactId>rspec-mocks</artifactId>
148
+ <version>2.13.1</version>
149
+ <type>gem</type>
150
+ <scope>test</scope>
151
+ </dependency>
152
+ </dependencies>
153
+ </profile>
154
+ </profiles>
155
+ </project>
@@ -0,0 +1,7 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ gemspec
4
+
5
+ gem 'virtus'
6
+
7
+ # vim: syntax=Ruby
@@ -0,0 +1,42 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bouncy-castle-java (1.5.0149)
5
+ rake (~> 10.2)
6
+
7
+ GEM
8
+ specs:
9
+ axiom-types (0.1.1)
10
+ descendants_tracker (~> 0.0.4)
11
+ ice_nine (~> 0.11.0)
12
+ thread_safe (~> 0.3, >= 0.3.1)
13
+ coercible (1.0.1)
14
+ descendants_tracker (~> 0.0.1)
15
+ descendants_tracker (0.0.4)
16
+ thread_safe (~> 0.3, >= 0.3.1)
17
+ diff-lcs (1.2.5)
18
+ equalizer (0.1.0)
19
+ ice_nine (0.11.0)
20
+ rake (10.2.2)
21
+ rspec (2.14.1)
22
+ rspec-core (~> 2.14.0)
23
+ rspec-expectations (~> 2.14.0)
24
+ rspec-mocks (~> 2.14.0)
25
+ rspec-core (2.14.7)
26
+ rspec-expectations (2.14.5)
27
+ diff-lcs (>= 1.1.3, < 2.0)
28
+ rspec-mocks (2.14.6)
29
+ thread_safe (0.3.3)
30
+ virtus (1.0.2)
31
+ axiom-types (~> 0.1)
32
+ coercible (~> 1.0)
33
+ descendants_tracker (~> 0.0.3)
34
+ equalizer (~> 0.1.0)
35
+
36
+ PLATFORMS
37
+ ruby
38
+
39
+ DEPENDENCIES
40
+ bouncy-castle-java!
41
+ rspec (~> 2.11)
42
+ virtus
@@ -0,0 +1,5 @@
1
+ #-*- mode: ruby -*-
2
+
3
+ gemfile
4
+
5
+ # vim: syntax=Ruby
@@ -0,0 +1,22 @@
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.description = 'Gem redistribution of "Legion of the Bouncy Castle Java cryptography APIs" jars at http://www.bouncycastle.org/java.html'
14
+ s.platform = 'java'
15
+ s.files = ['README', 'LICENSE.html', 'lib/bouncy-castle-java.rb' ] + Dir['lib/bc*.jar' ]
16
+ s.requirements << "jar org.bouncycastle:bcpkix-jdk15on, #{BouncyCastle::MAVEN_VERSION}"
17
+ s.requirements << "jar org.bouncycastle:bcprov-jdk15on, #{BouncyCastle::MAVEN_VERSION}"
18
+ s.add_runtime_dependency 'rake', '~> 10.2'
19
+ s.add_development_dependency 'rspec', '~> 2.11'
20
+ end
21
+
22
+ # vim: syntax=Ruby
@@ -0,0 +1,197 @@
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
+ <developers>
22
+ <developer>
23
+ <name>Hiroshi Nakamura</name>
24
+ <email>nahi@ruby-lang.org</email>
25
+ </developer>
26
+ </developers>
27
+ <scm>
28
+ <connection>https://github.com/jruby/jruby/tree/master/gems/bouncy-castle-java.git</connection>
29
+ <url>http://github.com/jruby/jruby/tree/master/gems/bouncy-castle-java/</url>
30
+ </scm>
31
+ <properties>
32
+ <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
33
+ <jruby.plugins.version>1.0.1</jruby.plugins.version>
34
+ </properties>
35
+ <dependencies>
36
+ <dependency>
37
+ <groupId>org.bouncycastle</groupId>
38
+ <artifactId>bcpkix-jdk15on</artifactId>
39
+ <version>1.49</version>
40
+ </dependency>
41
+ <dependency>
42
+ <groupId>org.bouncycastle</groupId>
43
+ <artifactId>bcprov-jdk15on</artifactId>
44
+ <version>1.49</version>
45
+ </dependency>
46
+ </dependencies>
47
+ <repositories>
48
+ <repository>
49
+ <id>rubygems-releases</id>
50
+ <url>http://rubygems-proxy.torquebox.org/releases</url>
51
+ </repository>
52
+ </repositories>
53
+ <build>
54
+ <extensions>
55
+ <extension>
56
+ <groupId>de.saumya.mojo</groupId>
57
+ <artifactId>gem-extension</artifactId>
58
+ <version>${jruby.plugins.version}</version>
59
+ </extension>
60
+ </extensions>
61
+ <directory>${basedir}/pkg</directory>
62
+ <plugins>
63
+ <plugin>
64
+ <groupId>de.saumya.mojo</groupId>
65
+ <artifactId>gem-maven-plugin</artifactId>
66
+ <version>${jruby.plugins.version}</version>
67
+ <configuration>
68
+ <gemspec>bouncy-castle-java.gemspec</gemspec>
69
+ </configuration>
70
+ </plugin>
71
+ </plugins>
72
+ </build>
73
+ <profiles>
74
+ <profile>
75
+ <id>gemfile</id>
76
+ <activation>
77
+ <file>
78
+ <missing>Gemfile.lock</missing>
79
+ </file>
80
+ </activation>
81
+ <dependencies>
82
+ <dependency>
83
+ <groupId>rubygems</groupId>
84
+ <artifactId>virtus</artifactId>
85
+ <version>[0,)</version>
86
+ <type>gem</type>
87
+ </dependency>
88
+ <dependency>
89
+ <groupId>rubygems</groupId>
90
+ <artifactId>rake</artifactId>
91
+ <version>[10.2,10.99999]</version>
92
+ <type>gem</type>
93
+ </dependency>
94
+ <dependency>
95
+ <groupId>rubygems</groupId>
96
+ <artifactId>rspec</artifactId>
97
+ <version>[2.11,2.99999]</version>
98
+ <type>gem</type>
99
+ <scope>test</scope>
100
+ </dependency>
101
+ </dependencies>
102
+ </profile>
103
+ <profile>
104
+ <id>gemfile_lock</id>
105
+ <activation>
106
+ <file>
107
+ <exists>Gemfile.lock</exists>
108
+ </file>
109
+ </activation>
110
+ <dependencies>
111
+ <dependency>
112
+ <groupId>rubygems</groupId>
113
+ <artifactId>virtus</artifactId>
114
+ <version>1.0.2</version>
115
+ <type>gem</type>
116
+ </dependency>
117
+ <dependency>
118
+ <groupId>rubygems</groupId>
119
+ <artifactId>axiom-types</artifactId>
120
+ <version>0.1.1</version>
121
+ <type>gem</type>
122
+ </dependency>
123
+ <dependency>
124
+ <groupId>rubygems</groupId>
125
+ <artifactId>descendants_tracker</artifactId>
126
+ <version>0.0.4</version>
127
+ <type>gem</type>
128
+ </dependency>
129
+ <dependency>
130
+ <groupId>rubygems</groupId>
131
+ <artifactId>thread_safe</artifactId>
132
+ <version>0.3.3</version>
133
+ <type>gem</type>
134
+ </dependency>
135
+ <dependency>
136
+ <groupId>rubygems</groupId>
137
+ <artifactId>ice_nine</artifactId>
138
+ <version>0.11.0</version>
139
+ <type>gem</type>
140
+ </dependency>
141
+ <dependency>
142
+ <groupId>rubygems</groupId>
143
+ <artifactId>coercible</artifactId>
144
+ <version>1.0.1</version>
145
+ <type>gem</type>
146
+ </dependency>
147
+ <dependency>
148
+ <groupId>rubygems</groupId>
149
+ <artifactId>equalizer</artifactId>
150
+ <version>0.1.0</version>
151
+ <type>gem</type>
152
+ </dependency>
153
+ <dependency>
154
+ <groupId>rubygems</groupId>
155
+ <artifactId>rake</artifactId>
156
+ <version>10.2.2</version>
157
+ <type>gem</type>
158
+ </dependency>
159
+ <dependency>
160
+ <groupId>rubygems</groupId>
161
+ <artifactId>rspec</artifactId>
162
+ <version>2.14.1</version>
163
+ <type>gem</type>
164
+ <scope>test</scope>
165
+ </dependency>
166
+ <dependency>
167
+ <groupId>rubygems</groupId>
168
+ <artifactId>rspec-core</artifactId>
169
+ <version>2.14.7</version>
170
+ <type>gem</type>
171
+ <scope>test</scope>
172
+ </dependency>
173
+ <dependency>
174
+ <groupId>rubygems</groupId>
175
+ <artifactId>rspec-expectations</artifactId>
176
+ <version>2.14.5</version>
177
+ <type>gem</type>
178
+ <scope>test</scope>
179
+ </dependency>
180
+ <dependency>
181
+ <groupId>rubygems</groupId>
182
+ <artifactId>diff-lcs</artifactId>
183
+ <version>1.2.5</version>
184
+ <type>gem</type>
185
+ <scope>test</scope>
186
+ </dependency>
187
+ <dependency>
188
+ <groupId>rubygems</groupId>
189
+ <artifactId>rspec-mocks</artifactId>
190
+ <version>2.14.6</version>
191
+ <type>gem</type>
192
+ <scope>test</scope>
193
+ </dependency>
194
+ </dependencies>
195
+ </profile>
196
+ </profiles>
197
+ </project>