Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,8 @@ jar {
attributes ([
'Main-Class': 'org.python.util.jython',
'Built-By': 'build.gradle',
'Automatic-Module-Name': 'org.python.jython2'
'Automatic-Module-Name': 'org.python.jython2',
'Enable-Native-Access': 'ALL-UNNAMED'
])

attributes( [ // Build-Info section
Expand Down
2 changes: 2 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -924,6 +924,7 @@ The text for an official release would continue like ...
<attribute name="Implementation-Vendor" value="Python Software Foundation"/>
<attribute name="Implementation-Title" value="Jython fat jar"/>
<attribute name="Implementation-Version" value="${jython.version}"/>
<attribute name="Enable-Native-Access" value="ALL-UNNAMED"/>
<!-- info section. ATTN: no blanks, no '.' in the names -->
<section name="Build-Info">
<attribute name="version" value="${jython.version}" />
Expand All @@ -948,6 +949,7 @@ The text for an official release would continue like ...
<attribute name="Implementation-Vendor" value="Python Software Foundation"/>
<attribute name="Implementation-Title" value="Jython fat jar with stdlib"/>
<attribute name="Implementation-Version" value="${jython.version}"/>
<attribute name="Enable-Native-Access" value="ALL-UNNAMED"/>
<!-- info section. ATTN: no blanks, no '.' in the names -->
<section name="Build-Info">
<attribute name="version" value="${jython.version}" />
Expand Down
Loading