File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,13 +17,11 @@ pull request.
1717[ Generate a classic token] ( https://github.com/settings/tokens ) with the ` read:packages ` scope needed to access
1818dependencies hosted on GitHub Package Repository.
1919
20- Create a ` gradle.properties ` file in the sava project directory root or under ` $HOME/.gradle/ ` .
20+ Add the following properties to ` $HOME/.gradle/gradle.properties ` .
2121
22- ### gradle.properties
23-
24- ``` properties
25- gpr.user =GITHUB_USERNAME
26- gpr.token =GITHUB_TOKEN
22+ ``` gradle.properties
23+ savaGithubPackagesUsername =GITHUB_USERNAME
24+ savaGithubPackagesPassword =GITHUB_TOKEN
2725```
2826
2927``` shell
Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ dependencies {
88
99tasks.register(" publishToGitHubPackages" ) {
1010 group = " publishing"
11- dependsOn(" :solana-programs:publish " )
11+ dependsOn(" :solana-programs:publishMavenJavaPublicationToSavaGithubPackagesRepository " )
1212}
Original file line number Diff line number Diff line change 11productDescription =Native Solana & SPL Program Clients
22javaVersion =24
3- solanaBOMVersion =24.0.1
3+ solanaBOMVersion =24.0.7
Original file line number Diff line number Diff line change 1+ pluginManagement {
2+ repositories {
3+ gradlePluginPortal()
4+ maven {
5+ name = " savaGithubPackages"
6+ url = uri(" https://maven.pkg.github.com/sava-software/sava-build" )
7+ credentials(PasswordCredentials ::class )
8+ }
9+ }
10+ }
11+
112plugins {
2- id(" software.sava.build" ) version " 0.1.8"
3- // id("software.sava.build.feature-jdk-provisioning") version "0.1.8"
13+ id(" software.sava.build" ) version " 0.1.13"
414}
515
616rootProject.name = " solana-programs"
You can’t perform that action at this time.
0 commit comments