Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
YanisBft committed Jan 1, 2024
1 parent 9720e1d commit 1009f8f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
14 changes: 11 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,15 @@ repositories {
// GriefPrevention
maven { url "https://jitpack.io" }

flatDir { dirs 'libs' }
["PACUtilities", "PACBirthday"].each {
maven {
url "https://maven.pkg.github.com/PeaceAndCubeMC/${it}"
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
}
}
}
}

configurations {
Expand All @@ -40,8 +48,8 @@ dependencies {
compileOnly "net.essentialsx:EssentialsX:${essentials_version}"
compileOnly "com.github.TechFortress:GriefPrevention:${griefprevention_version}"

compileOnly name: "pacutilities-${pacutilities_version}"
compileOnly name: "pacbirthday-${pacbirthday_version}"
compileOnly "fr.peaceandcube:pacutilities:${pacutilities_version}"
compileOnly "fr.peaceandcube:pacbirthday:${pacbirthday_version}"
}

build {
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
pacprofile_group = fr.peaceandcube
pacprofile_name = pacprofile
pacprofile_version = 1.5.3
pacprofile_version = 2.0-SNAPSHOT

paper_version = 1.20.4-R0.1-SNAPSHOT

anvilgui_version = 1.9.2-SNAPSHOT
luckperms_version = 5.4
essentials_version = 2.20.0
essentials_version = 2.20.1
griefprevention_version = 16.18.1

pacutilities_version = 1.3.2
pacbirthday_version = 1.5.0
pacutilities_version = 1.3.3
pacbirthday_version = 1.5.1
Binary file removed libs/pacbirthday-1.5.0.jar
Binary file not shown.
Binary file removed libs/pacutilities-1.3.2.jar
Binary file not shown.

0 comments on commit 1009f8f

Please sign in to comment.