Skip to content

Commit

Permalink
still not working #498
Browse files Browse the repository at this point in the history
  • Loading branch information
walterxie committed Jun 19, 2024
1 parent f69e02c commit 0145d65
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions lphy-studio/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,28 @@ publishing {
}
}
}
}
repositories {
// add sonatype snapshots repository
maven {
// name = "lphySnapshots"
// credentials {
// username = project.findProperty("ossrh.user") as String? ?: System.getenv("ossrh.user") ?: ""
// password = project.findProperty("ossrh.pswd") as String? ?: System.getenv("ossrh.pswd") ?: ""
// }
url=uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
mavenCentral()
// Managing plugin versions via pluginManagement in settings.gradle.kts
// mavenLocal() // only for testing
}

tasks.withType(JavaCompile::class.java) {
options.encoding = "UTF-8"
}

tasks.withType(Javadoc::class.java) {
options.encoding = "UTF-8"
}
}

Expand Down

0 comments on commit 0145d65

Please sign in to comment.