File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
plugins/sonatype/src/main/kotlin/com/powersync/plugins/sonatype Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.3 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-9.0.0 -bin.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ import java.util.Base64
2020internal abstract class PublishToCentralPortalTask : DefaultTask () {
2121 @get:Input
2222 @get:Optional
23- abstract val username: Property <String ? >
23+ abstract val username: Property <String >
2424
2525 @get:Input
2626 @get:Optional
27- abstract val password: Property <String ? >
27+ abstract val password: Property <String >
2828
2929 private fun outputFile (): File {
3030 val archive = project.tasks.getByName(COMPONENT_BUNDLE_TASK_NAME ) as Zip
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ public abstract class SonatypeCentralExtension(
99 private val project : Project
1010) {
1111 @get:Optional
12- public val username: Property <String ? > = project.objects.property(String ::class .java)
12+ public val username: Property <String > = project.objects.property(String ::class .java)
1313
1414 @get:Optional
15- public val password: Property <String ? > = project.objects.property(String ::class .java)
15+ public val password: Property <String > = project.objects.property(String ::class .java)
1616
1717 public companion object {
1818 public const val NAME : String = " sonatypePublishing"
You can’t perform that action at this time.
0 commit comments