Skip to content

Commit 2cbcb6d

Browse files
committed
fixed signing
Signed-off-by: Nischal Sharma <[email protected]>
1 parent 2b33fc2 commit 2cbcb6d

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

abi/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ signing {
1010
def gpgSecretKey = System.getenv('OSSRH_GPG_SECRET_KEY')
1111
def password = System.getenv('OSSRH_GPG_SECRET_KEY_PASSWORD')
1212
useInMemoryPgpKeys(gpgSecretKey, password)
13-
}
13+
}

besu/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ signing {
1111
def gpgSecretKey = System.getenv('OSSRH_GPG_SECRET_KEY')
1212
def password = System.getenv('OSSRH_GPG_SECRET_KEY_PASSWORD')
1313
useInMemoryPgpKeys(gpgSecretKey, password)
14-
}
14+
}

codegen/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ signing {
4343
def gpgSecretKey = System.getenv('OSSRH_GPG_SECRET_KEY')
4444
def password = System.getenv('OSSRH_GPG_SECRET_KEY_PASSWORD')
4545
useInMemoryPgpKeys(gpgSecretKey, password)
46-
}
46+
}

contracts/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ signing {
1111
def gpgSecretKey = System.getenv('OSSRH_GPG_SECRET_KEY')
1212
def password = System.getenv('OSSRH_GPG_SECRET_KEY_PASSWORD')
1313
useInMemoryPgpKeys(gpgSecretKey, password)
14-
}
14+
}

core/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,4 @@ signing {
8484
def gpgSecretKey = System.getenv('OSSRH_GPG_SECRET_KEY')
8585
def password = System.getenv('OSSRH_GPG_SECRET_KEY_PASSWORD')
8686
useInMemoryPgpKeys(gpgSecretKey, password)
87-
}
87+
}

crypto/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ signing {
1818
def gpgSecretKey = System.getenv('OSSRH_GPG_SECRET_KEY')
1919
def password = System.getenv('OSSRH_GPG_SECRET_KEY_PASSWORD')
2020
useInMemoryPgpKeys(gpgSecretKey, password)
21-
}
21+
}

eea/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ signing {
1111
def gpgSecretKey = System.getenv('OSSRH_GPG_SECRET_KEY')
1212
def password = System.getenv('OSSRH_GPG_SECRET_KEY_PASSWORD')
1313
useInMemoryPgpKeys(gpgSecretKey, password)
14-
}
14+
}

geth/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ signing {
1111
def gpgSecretKey = System.getenv('OSSRH_GPG_SECRET_KEY')
1212
def password = System.getenv('OSSRH_GPG_SECRET_KEY_PASSWORD')
1313
useInMemoryPgpKeys(gpgSecretKey, password)
14-
}
14+
}

gradle/java/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'java'
22

3-
sourceCompatibility = 17
4-
targetCompatibility = 17
3+
sourceCompatibility = 1.8
4+
targetCompatibility = 1.8
55

66
compileJava {
77
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"

hosted-providers/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ signing {
88
def gpgSecretKey = System.getenv('OSSRH_GPG_SECRET_KEY')
99
def password = System.getenv('OSSRH_GPG_SECRET_KEY_PASSWORD')
1010
useInMemoryPgpKeys(gpgSecretKey, password)
11-
}
11+
}

parity/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ signing {
1212
def gpgSecretKey = System.getenv('OSSRH_GPG_SECRET_KEY')
1313
def password = System.getenv('OSSRH_GPG_SECRET_KEY_PASSWORD')
1414
useInMemoryPgpKeys(gpgSecretKey, password)
15-
}
15+
}

rlp/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ signing {
88
def gpgSecretKey = System.getenv('OSSRH_GPG_SECRET_KEY')
99
def password = System.getenv('OSSRH_GPG_SECRET_KEY_PASSWORD')
1010
useInMemoryPgpKeys(gpgSecretKey, password)
11-
}
11+
}

tuples/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ signing {
66
def gpgSecretKey = System.getenv('OSSRH_GPG_SECRET_KEY')
77
def password = System.getenv('OSSRH_GPG_SECRET_KEY_PASSWORD')
88
useInMemoryPgpKeys(gpgSecretKey, password)
9-
}
9+
}

utils/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ signing {
88
def gpgSecretKey = System.getenv('OSSRH_GPG_SECRET_KEY')
99
def password = System.getenv('OSSRH_GPG_SECRET_KEY_PASSWORD')
1010
useInMemoryPgpKeys(gpgSecretKey, password)
11-
}
11+
}

0 commit comments

Comments
 (0)