File tree 1 file changed +10
-20
lines changed
1 file changed +10
-20
lines changed Original file line number Diff line number Diff line change 2
2
* Copyright 2017-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3
3
*/
4
4
5
- buildscript {
6
- repositories {
7
- maven {
8
- url " https://plugins.gradle.org/m2/"
9
- }
10
- }
11
- dependencies {
12
- classpath " com.gradle.publish:plugin-publish-plugin:0.16.0"
13
- }
5
+ plugins {
6
+ id ' kotlin'
7
+ id ' java-gradle-plugin'
8
+ id ' maven-publish'
9
+ id ' com.gradle.plugin-publish' version ' 0.16.0'
14
10
}
15
11
16
- apply plugin : ' kotlin'
17
- apply plugin : ' java-gradle-plugin'
18
- apply plugin : ' maven-publish'
19
- apply plugin : " com.gradle.plugin-publish"
20
-
21
12
if (rootProject. ext. jvm_ir_enabled) {
22
13
kotlin. target. compilations. all {
23
14
kotlinOptions. useIR = true
@@ -89,18 +80,17 @@ dependencies {
89
80
90
81
gradlePlugin {
91
82
plugins {
92
- create(" atomicfu" ) {
93
- id = " kotlinx- atomicfu"
83
+ create(" kotlinx- atomicfu" ) {
84
+ id = " org.jetbrains. kotlinx. atomicfu"
94
85
displayName = " Kotlinx Atomicfu Plugin"
95
- description = " The idiomatic way to use atomic operations in Kotlin "
86
+ description = " The idiomatic way to use atomic operations in Kotlin"
96
87
implementationClass = " kotlinx.atomicfu.plugin.gradle.AtomicFUGradlePlugin"
97
88
}
98
89
}
99
90
}
100
91
101
92
pluginBundle {
102
93
website = " https://github.com/Kotlin/kotlinx.atomicfu"
103
- vcsUrl = " https://github.com/Kotlin/kotlinx.atomicfu"
94
+ vcsUrl = " https://github.com/Kotlin/kotlinx.atomicfu.git "
104
95
tags = [" kotlin" , " atomic" , " kotlinx" ]
105
- }
106
-
96
+ }
You can’t perform that action at this time.
0 commit comments