Skip to content

Commit 87ed840

Browse files
committed
chore: 🔧 update build process
1 parent 75276ca commit 87ed840

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

‎build.gradle‎

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -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
}

‎gradle.properties‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ mod_id=sophisticatedstorageinmotion
1414
mod_name=Sophisticated Storage In Motion
1515
mod_license=All Rights Reserved
1616
mod_version=0.10.25
17-
mod_group_id=sophisticatedstorageinmotion
17+
mod_group_id=net.p3pp3rf1y
1818
mod_authors=P3pp3rF1y
1919
mod_description=Sophisticated Storage on moving entities.
2020
mod_credits=Created by P3pp3rF1y.

0 commit comments

Comments
 (0)