mirror of
https://github.com/vacp2p/linea-besu.git
synced 2026-01-08 23:17:54 -05:00
Java modules support (#4468)
Add java module info to the manifests of the following libraries used by the Besu EVM ./crypto - org.hyperledger.besu.internal.Crypto ./ethereum/rlp - org.hyperledger.besu.internal.Rlp ./util - org.hyperledger.besu.internal.Util ./datatypes - org.hyperledger.besu.Datatypes ./evm - org.hyperledger.besu.Evm ./plugin-api - org.hyperledger.besu.PluginApi Signed-off-by: Mustafa Uzun <mustafa.uzun@limechain.tech>
This commit is contained in:
@@ -22,7 +22,8 @@ jar {
|
||||
'Specification-Title': archiveBaseName,
|
||||
'Specification-Version': project.version,
|
||||
'Implementation-Title': archiveBaseName,
|
||||
'Implementation-Version': calculateVersion()
|
||||
'Implementation-Version': calculateVersion(),
|
||||
'Automatic-Module-Name': 'org.hyperledger.besu.internal.crypto'
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@ jar {
|
||||
'Specification-Title': archiveBaseName,
|
||||
'Specification-Version': project.version,
|
||||
'Implementation-Title': archiveBaseName,
|
||||
'Implementation-Version': calculateVersion()
|
||||
'Implementation-Version': calculateVersion(),
|
||||
'Automatic-Module-Name': 'org.hyperledger.besu.datatypes'
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@ jar {
|
||||
'Specification-Title': archiveBaseName,
|
||||
'Specification-Version': project.version,
|
||||
'Implementation-Title': archiveBaseName,
|
||||
'Implementation-Version': calculateVersion()
|
||||
'Implementation-Version': calculateVersion(),
|
||||
'Automatic-Module-Name': 'org.hyperledger.besu.internal.rlp'
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,7 +24,8 @@ jar {
|
||||
'Specification-Title': archiveBaseName,
|
||||
'Specification-Version': project.version,
|
||||
'Implementation-Title': archiveBaseName,
|
||||
'Implementation-Version': calculateVersion()
|
||||
'Implementation-Version': calculateVersion(),
|
||||
'Automatic-Module-Name': 'org.hyperledger.besu.evm'
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,7 +21,8 @@ jar {
|
||||
'Specification-Title': archiveBaseName,
|
||||
'Specification-Version': project.version,
|
||||
'Implementation-Title': archiveBaseName,
|
||||
'Implementation-Version': calculateVersion()
|
||||
'Implementation-Version': calculateVersion(),
|
||||
'Automatic-Module-Name': 'org.hyperledger.besu.plugin.api'
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@ jar {
|
||||
'Specification-Title': archiveBaseName,
|
||||
'Specification-Version': project.version,
|
||||
'Implementation-Title': archiveBaseName,
|
||||
'Implementation-Version': calculateVersion()
|
||||
'Implementation-Version': calculateVersion(),
|
||||
'Automatic-Module-Name': 'org.hyperledger.besu.internal.util'
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user