Skip to content

Commit

Permalink
Updating gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
copekope committed Jun 1, 2023
1 parent 14f8a70 commit 964230d
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
id 'java-library'
id 'maven-publish'
id 'signing'
id 'io.codearte.nexus-staging' version '0.30.0'
}

group = 'io.zksync'
Expand Down Expand Up @@ -40,7 +41,6 @@ publishing {
name = 'ZkSync2 SDK'
description = 'This repository provides a Java SDK for zkSync developers, which can be used either on PC or Android.'
url = 'https://github.com/zksync-sdk/zksync2-java'
version = '0.1.0'
organization {
name = 'Matter Labs'
url = 'https://matter-labs.io'
Expand All @@ -53,9 +53,9 @@ publishing {
}
developers {
developer {
id = 'mfischuk'
name = 'Maxim Fischuk'
email = '[email protected]'
id = 'matterLabs'
name = 'Matter Labs'
email = '[email protected]'
}
}
scm {
Expand All @@ -78,6 +78,11 @@ publishing {
}
}

nexusStaging {
packageGroup = "io.zksync.zksync2" //optional if packageGroup == project.getGroup()
stagingProfileId findProperty("OSSRH_STAGING_PROFILE_ID")
}


signing {
def signingKeyId = findProperty("signingKeyId")
Expand Down

0 comments on commit 964230d

Please sign in to comment.