Skip to content

Commit

Permalink
Fix accessors & implementation with Music utility (#58)
Browse files Browse the repository at this point in the history
* 🐛Fix issues with music accessors

* 🚀Version Bump

* ✨ Add compute methods to map accessors
  • Loading branch information
ItWasEnder authored Sep 16, 2024
1 parent 7084943 commit 69471be
Show file tree
Hide file tree
Showing 2 changed files with 227 additions and 211 deletions.
10 changes: 9 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {
}

group 'com.marcusslover'
version '4.3.0-SNAPSHOT'
version '4.3.1-SNAPSHOT'
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")

java {
Expand All @@ -36,6 +36,14 @@ test {
useJUnitPlatform()
}

tasks.getByName("compileJava") {
options.encoding = "UTF-8"
}

tasks.getByName("javadoc") {
options.encoding = "UTF-8"
}

publishing {
publications {
mavenJava(MavenPublication) {
Expand Down
Loading

0 comments on commit 69471be

Please sign in to comment.