Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate solana mobile #1

Merged
merged 4 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,8 @@ jobs:
- name: Publish to Maven Central
run: ./gradlew clean publishAllPublicationsToMavenCentral --stacktrace -P version=${TAG:1}
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.ARTIFACT_SIGNING_PRIVATE_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.ARTIFACT_SIGNING_PRIVATE_KEY_ID }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.ARTIFACT_SIGNING_PRIVATE_KEY_PASSWORD }}
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MAVEN_CENTRAL_PUBLISHING_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVEN_CENTRAL_PUBLISHING_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.MAVEN_CENTRAL_PUBLISHING_PRIVATE_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.MAVEN_CENTRAL_PUBLISHING_PRIVATE_KEY_PASSWORD }}
TAG: ${{ github.event.release.tag_name }}
18 changes: 9 additions & 9 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ kotlin.js.compiler=ir

# Group name and project version, used when publishing. For official releases, the version should be
# provided to Gradle via '-P version="1.0"'.
group=io.github.funkatronics
artifactId=rpccore
group=com.solanamobile
artifactId=rpc-core
version=main-SNAPSHOT

SONATYPE_HOST=S01
Expand All @@ -17,16 +17,16 @@ SONATYPE_CLOSE_TIMEOUT_SECONDS=900
POM_NAME=RpcCore
POM_DESCRIPTION=Multiplatform JSON RPC Library using Kotlin Serialization
POM_INCEPTION_YEAR=2023
POM_URL=https://github.com/Funkatronics/RpcCore
POM_URL=https://github.com/solana-mobile/rpc-core

POM_LICENSE_NAME=The Apache Software License, Version 2.0
POM_LICENSE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENSE_DIST=repo

POM_SCM_URL=https://github.com/Funkatronics/RpcCore
POM_SCM_CONNECTION=scm:git:git://github.com/Funkatronics/RpcCore.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/Funkatronics/RpcCore.git
POM_SCM_URL=https://github.com/solana-mobile/rpc-core
POM_SCM_CONNECTION=scm:git:git://github.com/solana-mobile/rpc-core.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/solana-mobile/rpc-core.git

POM_DEVELOPER_ID=Funkatronics
POM_DEVELOPER_NAME=Marco Martinez
POM_DEVELOPER_URL=https://github.com/Funkatronics/
POM_DEVELOPER_NAME=Solana Mobile Engineering
POM_DEVELOPER_URL=https://solanamobile.com
POM_DEVELOPER_EMAIL=eng@solanamobile.com
2 changes: 1 addition & 1 deletion rpccore/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ kotlin {
macosArm64()
).forEach {
it.binaries.framework {
baseName = "rpccore"
baseName = artifactId
}
}
// js(BOTH) {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencyResolutionManagement {
}
}

rootProject.name = "RpcCore"
rootProject.name = "Rpc Core"
include(":rpccore")
include(":okiodriver")