-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
55 lines (47 loc) · 1.21 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import studio.forface.easygradle.dsl.`kotlin-test-junit`
import studio.forface.easygradle.dsl.`kotlin-test`
import studio.forface.easygradle.dsl.kotlin
import studio.forface.easygradle.dsl.publish
buildscript {
val kotlinVersion = "1.3.21"
repositories {
mavenCentral()
jcenter()
}
dependencies {
// noinspection all
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("studio.forface.easygradle:dsl:0.16")
}
}
plugins {
`kotlin-dsl`
kotlin("jvm") version "1.3.21"
}
group = "pm.algirdas"
repositories {
mavenCentral()
}
dependencies {
compileOnly(kotlin)
compile("com.google.code.gson:gson:2.8.5")
implementation("io.gitlab.arturbosch.detekt:detekt-api:1.5.0")
testCompile(`kotlin-test`)
testCompile(`kotlin-test-junit`)
}
publish {
projectName = null
version = "0.2.0"
bintrayGroup = "pm.algirdas"
groupId = "detekt"
groupName = "Detekt"
artifact = "codeanalysis"
gitUrl = "https://github.com/AlgirdasPundzius/Detekt-Reporter"
licenses {
license {
name = "MIT"
url = "https://opensource.org/licenses/MIT"
}
}
override = true
}