-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Gradle module for integration tests * Move remaining tests from root project to integration test module * Remove now unneeded dependencies block in `build.gradle` * Use `subprojects` rather than `allprojects` for main closure in `build.gradle`
- Loading branch information
1 parent
bf0b94c
commit 666df1d
Showing
7 changed files
with
33 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
plugins { | ||
id 'java-library' | ||
} | ||
|
||
tasks.withType(JavaCompile).configureEach { | ||
//options.release = 21 | ||
} | ||
|
||
ext.moduleName = 'org.bitcoinj.secp256k1.integration' | ||
|
||
dependencies { | ||
implementation project(':secp256k1-api') | ||
implementation project(':secp256k1-bouncy') | ||
implementation project(':secp256k1-foreign') | ||
implementation project(':secp256k1-sandbox') | ||
|
||
//implementation 'org.bouncycastle:bcprov-jdk18on:1.77' | ||
} | ||
|
||
jar { | ||
inputs.property("moduleName", moduleName) | ||
manifest { | ||
attributes 'Implementation-Title': 'Secp256k1 Integration Tests', | ||
'Automatic-Module-Name': moduleName, | ||
'Implementation-Version': archiveVersion.get() | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...usj/secp256k1/bouncy/Bouncy256k1Test.java → ...ecp256k1/integration/Bouncy256k1Test.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...a/org/consensusj/secp256k1/CurveTest.java → ...oinj/secp256k1/integration/CurveTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ensusj/secp256k1/api/PrivKeyDataTest.java → ...ecp256k1/integration/PrivKeyDataTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...cp256k1/foreign/Secp256k1ForeignTest.java → ...6k1/integration/Secp256k1ForeignTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters