File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 44import PackageDescription
55
66let tag = " v0.6.2 "
7- let checksum = " 73f53b615d5bfdf76f2e7233bde17a2a62631292ce506763a7150344230859c8 "
7+ let checksum = " dee28eb2bc019eeb61cc28ca5c19fdada465a6eb2b5169d2dbaa369f0c63ba03 "
88let url = " https://github.com/lightningdevkit/ldk-node/releases/download/ \( tag) /LDKNodeFFI.xcframework.zip "
99
1010let package = Package (
Original file line number Diff line number Diff line change 11buildscript {
22 repositories {
33 google()
4+ mavenCentral()
45 }
56 dependencies {
67 classpath(" com.android.tools.build:gradle:7.1.2" )
78 }
89}
910
1011plugins {
11- id(" io.github.gradle-nexus.publish-plugin" ) version " 1.1.0"
1212}
1313
1414// library version is defined in gradle.properties
1515val libraryVersion: String by project
1616
17- // These properties are required here so that the nexus publish-plugin
18- // finds a staging profile with the correct group (group is otherwise set as "")
19- // and knows whether to publish to a SNAPSHOT repository or not
20- // https://github.com/gradle-nexus/publish-plugin#applying-the-plugin
2117group = " org.lightningdevkit"
2218version = libraryVersion
23-
24- nexusPublishing {
25- repositories {
26- create(" sonatype" ) {
27- nexusUrl.set(uri(" https://s01.oss.sonatype.org/service/local/" ))
28- snapshotRepositoryUrl.set(uri(" https://s01.oss.sonatype.org/content/repositories/snapshots/" ))
29-
30- val ossrhUsername: String? by project
31- val ossrhPassword: String? by project
32- username.set(ossrhUsername)
33- password.set(ossrhPassword)
34- }
35- }
36- }
Original file line number Diff line number Diff line change 11buildscript {
22 repositories {
33 google()
4+ mavenCentral()
45 }
56 dependencies {
6- classpath(" com.android.tools.build:gradle:7.1.2" )
77 }
88}
99
1010plugins {
11- id(" io.github.gradle-nexus.publish-plugin" ) version " 1.1.0"
1211}
1312
1413// library version is defined in gradle.properties
1514val libraryVersion: String by project
1615
17- // These properties are required here so that the nexus publish-plugin
18- // finds a staging profile with the correct group (group is otherwise set as "")
19- // and knows whether to publish to a SNAPSHOT repository or not
20- // https://github.com/gradle-nexus/publish-plugin#applying-the-plugin
2116group = " org.lightningdevkit"
2217version = libraryVersion
23-
24- nexusPublishing {
25- repositories {
26- create(" sonatype" ) {
27- nexusUrl.set(uri(" https://s01.oss.sonatype.org/service/local/" ))
28- snapshotRepositoryUrl.set(uri(" https://s01.oss.sonatype.org/content/repositories/snapshots/" ))
29-
30- val ossrhUsername: String? by project
31- val ossrhPassword: String? by project
32- username.set(ossrhUsername)
33- password.set(ossrhPassword)
34- }
35- }
36- }
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ md5sum $1 | cut -d ' ' -f 1 > $1 .md5
3+ sha1sum $1 | cut -d ' ' -f 1 > $1 .sha1
4+ sha256sum $1 | cut -d ' ' -f 1 > $1 .sha256
5+ sha512sum $1 | cut -d ' ' -f 1 > $1 .sha512
You can’t perform that action at this time.
0 commit comments