File tree Expand file tree Collapse file tree 4 files changed +5
-36
lines changed Expand file tree Collapse file tree 4 files changed +5
-36
lines changed Original file line number Diff line number Diff line change @@ -25,24 +25,12 @@ plugins {
25
25
id(" com.gradle.plugin-publish" ) apply false
26
26
id(" com.github.autostyle" )
27
27
id(" org.jetbrains.gradle.plugin.idea-ext" )
28
- id(" com.github.ben-manes.versions" )
29
28
id(" org.jetbrains.dokka" )
30
29
`embedded- kotlin`
31
30
}
32
31
33
32
buildscript {
34
- val publishToCentral = (findProperty(" publishToCentral" ) as ? String )
35
- ?.ifBlank { " true" }?.toBoolean() ? : true
36
- repositories {
37
- if (publishToCentral) {
38
- gradlePluginPortal()
39
- }
40
- }
41
33
dependencies {
42
- if (publishToCentral) {
43
- val version = findProperty(" released.version" )
44
- classpath(" com.github.vlsi.stage-vote-release:com.github.vlsi.stage-vote-release.gradle.plugin:$version " )
45
- }
46
34
classpath(" org.ajoberstar.grgit:grgit-gradle:4.1.1" )
47
35
}
48
36
}
@@ -54,8 +42,6 @@ val publishToCentral = (findProperty("publishToCentral") as? String)
54
42
?.ifBlank { " true" }?.toBoolean() ? : true
55
43
56
44
if (publishToCentral) {
57
- apply (plugin = " com.github.vlsi.stage-vote-release" )
58
- apply (from = " publish-central.gradle" )
59
45
}
60
46
61
47
allprojects {
Original file line number Diff line number Diff line change @@ -18,17 +18,5 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=768m
18
18
# See https://github.com/gradle/gradle/pull/11358 , https://issues.apache.org/jira/browse/INFRA-14923
19
19
# repository.apache.org does not yet support .sha256 and .sha512 checksums
20
20
systemProp.org.gradle.internal.publish.checksums.insecure =true
21
- kotlin.code.style =official
22
21
23
22
project.version =1.90
24
- released.version =1.89
25
-
26
- com.github.vlsi.checksum-dependency.sha512 =85307929539D50B53F4F652330D1B5C8118A6FC100704AF676EA765A4E4CF653C06EEB96B3A67DEA204188ED6B48B0A27A7C4B70C548BAC0B6A9EDDD8B35D661
27
- com.github.vlsi.checksum-dependency.version =1.88
28
-
29
- # Plugins
30
- com.github.autostyle.version =3.2
31
- com.gradle.plugin-publish.version =1.2.0
32
- org.jetbrains.gradle.plugin.idea-ext.version =0.7
33
- com.github.ben-manes.versions.version =0.21.0
34
- org.jetbrains.dokka.version =1.4.32
Original file line number Diff line number Diff line change 16
16
*/
17
17
18
18
dependencies {
19
- implementation(" gradle.plugin. org.jetbrains.gradle.plugin.idea-ext:gradle- idea-ext:1.1.10" )
19
+ implementation(" org.jetbrains.gradle.plugin.idea-ext:org.jetbrains. gradle.plugin. idea-ext.gradle.plugin :1.1.10" )
20
20
}
Original file line number Diff line number Diff line change 17
17
18
18
pluginManagement {
19
19
plugins {
20
- fun String.v () = extra[" $this .version" ].toString()
21
- fun PluginDependenciesSpec.idv (id : String , key : String = id) = id(id) version key.v()
22
-
23
- idv(" com.github.autostyle" )
24
- idv(" com.gradle.plugin-publish" )
25
- idv(" org.jetbrains.gradle.plugin.idea-ext" )
26
- idv(" com.github.ben-manes.versions" )
27
- idv(" org.jetbrains.dokka" )
28
- idv(" com.github.vlsi.stage-vote-release" , " released" )
20
+ id(" com.github.autostyle" ) version " 3.2"
21
+ id(" com.gradle.plugin-publish" ) version " 1.2.0"
22
+ id(" org.jetbrains.gradle.plugin.idea-ext" ) version " 1.1.10"
23
+ id(" org.jetbrains.dokka" ) version " 1.4.32"
29
24
}
30
25
}
31
26
You can’t perform that action at this time.
0 commit comments