Skip to content

Commit

Permalink
Merge pull request #1 from solana-mobile/migrate-solana-mobile
Browse files Browse the repository at this point in the history
Migrate to Solana Mobile
  • Loading branch information
Funkatronics authored Nov 16, 2023
2 parents 6625b4b + 1773dee commit f03c267
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 17 deletions.
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 }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Web3Kt
# Web3 Core
Multiplatform Web3 Library

# Usage
Expand Down
20 changes: 10 additions & 10 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=web3kt
group=com.solanamobile
artifactId=web3-core
version=main-SNAPSHOT

SONATYPE_HOST=S01
Expand All @@ -14,19 +14,19 @@ SONATYPE_AUTOMATIC_RELEASE=true
SONATYPE_CONNECT_TIMEOUT_SECONDS=60
SONATYPE_CLOSE_TIMEOUT_SECONDS=900

POM_NAME=Web3KT
POM_NAME=web3-core
POM_DESCRIPTION=Multiplatform Kotlin Library for Web3 Primitives
POM_INCEPTION_YEAR=2023
POM_URL=https://github.com/Funkatronics/Web3Kt
POM_URL=https://github.com/solana-mobile/web3-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/Web3Kt
POM_SCM_CONNECTION=scm:git:git://github.com/Funkatronics/Web3Kt.git
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/Funkatronics/Web3Kt.git
POM_SCM_URL=https://github.com/solana-mobile/web3-core
POM_SCM_CONNECTION=scm:git:git://github.com/solana-mobile/web3-core
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/solana-mobile/web3-core

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 settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencyResolutionManagement {
}
}

rootProject.name = "Web3Kt"
rootProject.name = "Web3 Core"
include(":core")
include(":solana")

0 comments on commit f03c267

Please sign in to comment.