File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55 id ' maven-publish' // for jitpack.io
66}
77
8- String group = System . getenv(" GROUP" ) ?: properties[" group" ]
8+ String group = System . getenv(" GROUP" ) ?: properties[" group" ] ?: " com.github.server-utilities "
99String commitHash = " " ;
1010
1111if (System . getenv(" JITPACK" ) != " true" ) {
Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ org.gradle.caching = true
77org.gradle.vfs.watch = false
88
99# Other properties
10- name = TheBase
11- group = com.github.server-utilities
12- version = 1.0
10+ # name = TheBase
11+ # group = com.github.server-utilities
12+ # version = 1.0
Original file line number Diff line number Diff line change 1- String artifact = System . getenv(' ARTIFACT' ) ?: properties[' name' ]
1+ String artifact = System . getenv(' ARTIFACT' ) ?: properties[' name' ] ?: rootProject . name
22
3- rootProject. name = artifact
3+ if (System . getenv(" JITPACK" ) != " true" ) {
4+ rootProject. name = artifact
5+ }
You can’t perform that action at this time.
0 commit comments