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 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =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
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ import java.util.Base64
20
20
internal abstract class PublishToCentralPortalTask : DefaultTask () {
21
21
@get:Input
22
22
@get:Optional
23
- abstract val username: Property <String ? >
23
+ abstract val username: Property <String >
24
24
25
25
@get:Input
26
26
@get:Optional
27
- abstract val password: Property <String ? >
27
+ abstract val password: Property <String >
28
28
29
29
private fun outputFile (): File {
30
30
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(
9
9
private val project : Project
10
10
) {
11
11
@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)
13
13
14
14
@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)
16
16
17
17
public companion object {
18
18
public const val NAME : String = " sonatypePublishing"
You can’t perform that action at this time.
0 commit comments