File tree Expand file tree Collapse file tree 6 files changed +8
-169
lines changed Expand file tree Collapse file tree 6 files changed +8
-169
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
import PackageDescription
5
5
6
6
let tag = " v0.6.2 "
7
- let checksum = " 73f53b615d5bfdf76f2e7233bde17a2a62631292ce506763a7150344230859c8 "
7
+ let checksum = " dee28eb2bc019eeb61cc28ca5c19fdada465a6eb2b5169d2dbaa369f0c63ba03 "
8
8
let url = " https://github.com/lightningdevkit/ldk-node/releases/download/ \( tag) /LDKNodeFFI.xcframework.zip "
9
9
10
10
let package = Package (
Original file line number Diff line number Diff line change 1
1
buildscript {
2
2
repositories {
3
3
google()
4
+ mavenCentral()
4
5
}
5
6
dependencies {
6
7
classpath(" com.android.tools.build:gradle:7.1.2" )
7
8
}
8
9
}
9
10
10
11
plugins {
11
- id(" io.github.gradle-nexus.publish-plugin" ) version " 1.1.0"
12
12
}
13
13
14
14
// library version is defined in gradle.properties
15
15
val libraryVersion: String by project
16
16
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
21
17
group = " org.lightningdevkit"
22
18
version = 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
1
buildscript {
2
2
repositories {
3
3
google()
4
+ mavenCentral()
4
5
}
5
6
dependencies {
6
- classpath(" com.android.tools.build:gradle:7.1.2" )
7
7
}
8
8
}
9
9
10
10
plugins {
11
- id(" io.github.gradle-nexus.publish-plugin" ) version " 1.1.0"
12
11
}
13
12
14
13
// library version is defined in gradle.properties
15
14
val libraryVersion: String by project
16
15
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
21
16
group = " org.lightningdevkit"
22
17
version = 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