File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed
Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,23 @@ lateinit var releaseVersion: String
3333// }
3434// }
3535// }
36+ publishing {
37+ repositories {
38+ maven {
39+ name = " GitHubPackages"
40+ url = uri(" https://maven.pkg.github.com/vanioinformatika/maven-releases" )
41+ credentials {
42+ username = project.findProperty(" gpr.user" ) as String? ? : System .getenv(" USERNAME" )
43+ password = project.findProperty(" gpr.key" ) as String? ? : System .getenv(" TOKEN" )
44+ }
45+ }
46+ }
47+ // publications {
48+ // register<MavenPublication>("gpr") {
49+ // from(components["java"])
50+ // }
51+ // }
52+ }
3653
3754release {
3855 failOnPublishNeeded = false
Original file line number Diff line number Diff line change 1+ version = 0.0.1-SNAPSHOT
Original file line number Diff line number Diff line change 11rootProject.name = " vanio-gradle"
22
3- includeBuild(" plugin" ) {
4- name = " pluginBuild"
5- }
3+ includeBuild(" plugin" )
64include(
7- " plugin" ,
85 " dummy" ,
96 " dummy:lib" ,
107 " dummy:app"
You can’t perform that action at this time.
0 commit comments