Skip to content

Commit 8302b8b

Browse files
Update build.gradle
1 parent 0d41df4 commit 8302b8b

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

library/build.gradle

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,19 @@ afterEvaluate {
5050
from components.release
5151
}
5252
}
53+
54+
repositories {
55+
maven {
56+
name = "GitHubPackages"
57+
url = uri("https://maven.pkg.github.com/FlutterGenerator/SnowFall")
58+
credentials {
59+
def githubProperties = new Properties()
60+
githubProperties.load(new FileInputStream(rootProject.file("github.properties")))
61+
62+
username = githubProperties['gpr.usr']
63+
password = githubProperties['gpr.key']
64+
}
65+
}
66+
}
5367
}
54-
}
68+
}

0 commit comments

Comments
 (0)