Skip to content

Commit

Permalink
Change coordinates from native to nativelib (#108)
Browse files Browse the repository at this point in the history
* Change coordinates from native to nativelib

Migrate all maven coordinates that were `.native.` to `.nativelib.`.
The old coordinate name presented problems in some auto-module systems
for the JPMS.

Signed-off-by: Danno Ferrin <danno.ferrin@swirldslabs.com>
  • Loading branch information
shemnon authored Jun 25, 2023
1 parent 3c43909 commit 6354e6f
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion altbn128/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jar {
'Specification-Version': project.version,
'Implementation-Title': archiveBaseName,
'Implementation-Version': project.version,
'Automatic-Module-Name': 'org.hyperledger.besu.native.altbn128'
'Automatic-Module-Name': 'org.hyperledger.besu.nativelib.altbn128'
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion arithmetic/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jar {
'Specification-Version': project.version,
'Implementation-Title': archiveBaseName,
'Implementation-Version': project.version,
'Automatic-Module-Name': 'org.hyperledger.besu.native.arithmetic'
'Automatic-Module-Name': 'org.hyperledger.besu.nativelib.arithmetic'
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion blake2bf/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jar {
'Specification-Version': project.version,
'Implementation-Title': archiveBaseName,
'Implementation-Version': project.version,
'Automatic-Module-Name': 'org.hyperledger.besu.native.blake2bf'
'Automatic-Module-Name': 'org.hyperledger.besu.nativelib.blake2bf'
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion bls12-381/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jar {
'Specification-Version': project.version,
'Implementation-Title': archiveBaseName,
'Implementation-Version': project.version,
'Automatic-Module-Name': 'org.hyperledger.besu.native.bls12_381'
'Automatic-Module-Name': 'org.hyperledger.besu.nativelib.bls12_381'
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion gnark/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jar {
'Specification-Version': project.version,
'Implementation-Title': archiveBaseName,
'Implementation-Version': project.version,
'Automatic-Module-Name': 'org.hyperledger.besu.native.gnark'
'Automatic-Module-Name': 'org.hyperledger.besu.nativelib.gnark'
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.7.2-SNAPSHOT
version=0.8.0-SNAPSHOT
2 changes: 1 addition & 1 deletion ipa-multipoint/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jar {
'Specification-Version': project.version,
'Implementation-Title': archiveBaseName,
'Implementation-Version': project.version,
'Automatic-Module-Name': 'org.hyperledger.besu.native.ipa.multipoint'
'Automatic-Module-Name': 'org.hyperledger.besu.nativelib.ipa.multipoint'
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion secp256k1/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jar {
'Specification-Version': project.version,
'Implementation-Title': archiveBaseName,
'Implementation-Version': project.version,
'Automatic-Module-Name': 'org.hyperledger.besu.native.secp256k1'
'Automatic-Module-Name': 'org.hyperledger.besu.nativelib.secp256k1'
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion secp256r1/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jar {
'Specification-Version': project.version,
'Implementation-Title': archiveBaseName,
'Implementation-Version': project.version,
'Automatic-Module-Name': 'org.hyperledger.besu.native.secp256r1'
'Automatic-Module-Name': 'org.hyperledger.besu.nativelib.secp256r1'
)
}
}
Expand Down

0 comments on commit 6354e6f

Please sign in to comment.