Skip to content

Commit def36c2

Browse files
authored
Update build.gradle
1 parent 6c5e695 commit def36c2

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

build.gradle

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,19 @@ publishing{
7373
artifact sourcesJar
7474
}
7575
}
76+
repositories{
77+
maven{
78+
name = "GitHubPackages"
79+
url = uri("https://maven.pkg.github.com/botblock/JavaBotBlockAPI")
80+
credentials{
81+
username = "botblock"
82+
password = System.getenv("GITHUB_TOKEN")
83+
}
84+
}
85+
publications{
86+
gpr(MavenPublication){
87+
from(components.java)
88+
}
89+
}
90+
}
7691
}

0 commit comments

Comments
 (0)