We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8555191 commit d9a059cCopy full SHA for d9a059c
project-plugins/src/main/kotlin/io/github/xmlutil/plugin/PublishToSonatypeTask.kt
@@ -50,7 +50,7 @@ abstract class PublishToSonatypeTask() : DefaultTask() {
50
val url = URI("https://central.sonatype.com/api/v1/publisher/upload?publishingType=USER_MANAGED")
51
val connection = url.toURL().openConnection() as HttpURLConnection
52
try {
53
- val boundary = "*******${Instant.now().millis}*******"
+ val boundary = "*******${System.currentTimeMillis()}*******"
54
55
connection.requestMethod = "POST"
56
connection.doOutput = true
0 commit comments