File tree Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Expand file tree Collapse file tree 3 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ pluginManagement {
9
9
}
10
10
11
11
dependencyResolutionManagement {
12
- repositoriesMode.set( RepositoriesMode .FAIL_ON_PROJECT_REPOS )
12
+ repositoriesMode = RepositoriesMode .FAIL_ON_PROJECT_REPOS
13
13
repositories {
14
14
google()
15
15
mavenCentral()
Original file line number Diff line number Diff line change @@ -81,30 +81,30 @@ publishing {
81
81
from(components[" release" ])
82
82
}
83
83
pom {
84
- name.set( " WireGuard Tunnel Library" )
85
- description.set( " Embeddable tunnel library for WireGuard for Android" )
86
- url.set( " https://www.wireguard.com/" )
84
+ name = " WireGuard Tunnel Library"
85
+ description = " Embeddable tunnel library for WireGuard for Android"
86
+ url = " https://www.wireguard.com/"
87
87
88
88
licenses {
89
89
license {
90
- name.set( " The Apache Software License, Version 2.0" )
91
- url.set( " http://www.apache.org/licenses/LICENSE-2.0.txt" )
92
- distribution.set( " repo" )
90
+ name = " The Apache Software License, Version 2.0"
91
+ url = " http://www.apache.org/licenses/LICENSE-2.0.txt"
92
+ distribution = " repo"
93
93
}
94
94
}
95
95
scm {
96
- connection.set( " scm:git:https://git.zx2c4.com/wireguard-android" )
97
- developerConnection.set( " scm:git:https://git.zx2c4.com/wireguard-android" )
98
- url.set( " https://git.zx2c4.com/wireguard-android" )
96
+ connection = " scm:git:https://git.zx2c4.com/wireguard-android"
97
+ developerConnection = " scm:git:https://git.zx2c4.com/wireguard-android"
98
+ url = " https://git.zx2c4.com/wireguard-android"
99
99
}
100
100
developers {
101
101
organization {
102
- name.set( " WireGuard" )
103
- url.set( " https://www.wireguard.com/" )
102
+ name = " WireGuard"
103
+ url = " https://www.wireguard.com/"
104
104
}
105
105
developer {
106
- name.set( " WireGuard" )
107
-
106
+ name = " WireGuard"
107
+
108
108
}
109
109
}
110
110
}
Original file line number Diff line number Diff line change @@ -89,5 +89,5 @@ tasks.withType<JavaCompile>().configureEach {
89
89
}
90
90
91
91
tasks.withType<KotlinCompile >().configureEach {
92
- compilerOptions.jvmTarget.set( JvmTarget .JVM_17 )
92
+ compilerOptions.jvmTarget = JvmTarget .JVM_17
93
93
}
You can’t perform that action at this time.
0 commit comments