Skip to content

Commit

Permalink
reduce OSGi DynamicImport-Package to javax.* needed for openssl - fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mkristian committed Sep 16, 2014
1 parent 3c4fa4a commit 7b194e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion maven/jruby-complete/pom.rb
Expand Up @@ -34,7 +34,7 @@
:instructions => {
'Export-Package' => 'org.jruby.*;version=${project.version}',
'Import-Package' => '!org.jruby.*, *;resolution:=optional',
'DynamicImport-Package' => '*',
'DynamicImport-Package' => 'javax.*',
'Embed-Dependency' => '*;type=jar;scope=compile|runtime;inline=true',
'Embed-Transitive' => true,
'Private-Package' => '*,.',
Expand Down
2 changes: 1 addition & 1 deletion maven/jruby-complete/pom.xml
Expand Up @@ -70,7 +70,7 @@
<instructions>
<Export-Package>org.jruby.*;version=${project.version}</Export-Package>
<Import-Package>!org.jruby.*, *;resolution:=optional</Import-Package>
<DynamicImport-Package>*</DynamicImport-Package>
<DynamicImport-Package>javax.*</DynamicImport-Package>
<Embed-Dependency>*;type=jar;scope=compile|runtime;inline=true</Embed-Dependency>
<Embed-Transitive>true</Embed-Transitive>
<Private-Package>*,.</Private-Package>
Expand Down

0 comments on commit 7b194e6

Please sign in to comment.