Skip to content

Commit 1c8bef4

Browse files
committed
publish to github packages
1 parent 44fc95d commit 1c8bef4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

procedural/plugin/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55

66
// adding this as an implementation dependency here allows usage in our convention plugin
77
dependencies {
8-
implementation("com.gradleup.shadow:shadow-gradle-plugin:8.3.2")
8+
implementation("com.gradleup.shadow:shadow-gradle-plugin:8.3.3")
99
}
1010

1111
tasks.publish {
@@ -20,8 +20,8 @@ publishing {
2020
}
2121
repositories {
2222
maven {
23-
name = "GitHubPackages"
24-
url = "https://maven.pkg.github.com/skovati/copie"
23+
name = findProperty("publishing.name")
24+
url = findProperty("publishing.url")
2525
credentials {
2626
username = System.getenv("GITHUB_ACTOR")
2727
password = System.getenv("GITHUB_TOKEN")

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pluginManagement {
22
repositories {
33
maven {
44
name = "GitHubPackages"
5-
url = "https://maven.pkg.github.com/skovati/copie"
5+
url = "https://maven.pkg.github.com/NASA-AMMOS/aerie"
66
credentials {
77
username = System.getenv("GITHUB_ACTOR")
88
password = System.getenv("GITHUB_TOKEN")

0 commit comments

Comments
 (0)