@@ -37,22 +37,22 @@ repositories {
3737 name = " GHPCore"
3838 url = uri(" https://maven.pkg.github.com/p3pp3rf1y/sophisticatedcore" )
3939 credentials {
40- username = System . getenv(" USERNAME " )
40+ username = System . getenv(" GITHUB_ACTOR " )
4141 password = System . getenv(" GITHUB_TOKEN" )
4242 }
4343 content {
44- includeGroupByRegex " sophisticatedcore.* "
44+ includeModule( " net.p3pp3rf1y " , " sophisticatedcore" )
4545 }
4646 }
4747 maven {
4848 name = " GHPStorage"
4949 url = uri(" https://maven.pkg.github.com/p3pp3rf1y/sophisticatedstorage" )
5050 credentials {
51- username = System . getenv(" USERNAME " )
51+ username = System . getenv(" GITHUB_ACTOR " )
5252 password = System . getenv(" GITHUB_TOKEN" )
5353 }
5454 content {
55- includeGroupByRegex " sophisticatedstorage.* "
55+ includeModule( " net.p3pp3rf1y " , " sophisticatedstorage" )
5656 }
5757 }
5858 maven {
@@ -165,20 +165,20 @@ dependencies {
165165 if (findProject(' :SophisticatedCore' ) != null ) {
166166 dependencies. implementation project(' :SophisticatedCore' )
167167 } else {
168- dependencies. implementation(" sophisticatedcore :sophisticatedcore:${ sc_version} " ) {
168+ dependencies. implementation(" net.p3pp3rf1y :sophisticatedcore:${ sc_version} " ) {
169169 transitive = false
170170 }
171- dependencies. testImplementation(" sophisticatedcore :sophisticatedcore:${ sc_version} " ) {
171+ dependencies. testImplementation(" net.p3pp3rf1y :sophisticatedcore:${ sc_version} " ) {
172172 transitive = false
173173 }
174174 }
175175 if (findProject(' :SophisticatedStorage' ) != null ) {
176176 dependencies. implementation project(' :SophisticatedStorage' )
177177 } else {
178- dependencies. implementation(" sophisticatedstorage :sophisticatedstorage:${ ss_version} " ) {
178+ dependencies. implementation(" net.p3pp3rf1y :sophisticatedstorage:${ ss_version} " ) {
179179 transitive = false
180180 }
181- dependencies. testImplementation(" sophisticatedstorage :sophisticatedstorage:${ ss_version} " ) {
181+ dependencies. testImplementation(" net.p3pp3rf1y :sophisticatedstorage:${ ss_version} " ) {
182182 transitive = false
183183 }
184184 }
@@ -266,9 +266,9 @@ publishing {
266266 }
267267}
268268
269- sonarqube {
269+ sonar {
270270 properties {
271- property " sonar.projectName " , " ${ mod_id } "
271+ property " sonar.organization " , " p3pp3rf1y-github "
272272 property " sonar.projectKey" , " ${ sonar_project_key} "
273273 }
274274}
0 commit comments