forked from HPInc/jipp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
33 lines (28 loc) · 902 Bytes
/
build.gradle
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
allprojects {
ext.kotlin_version = '1.4.10'
ext.ktlint_version = '0.36.0'
// Version of JIPP & friends to publish
ext.jipp_version = '0.7.9'
buildscript {
repositories {
mavenCentral()
jcenter()
maven {
url = 'https://plugins.gradle.org/m2/'
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$kotlin_version"
classpath "gradle.plugin.pl.squirrel:classycle-gradle-plugin:1.2"
classpath "org.jlleitschuh.gradle:ktlint-gradle:9.4.1"
classpath "io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.14.1"
}
}
repositories {
mavenCentral()
jcenter()
}
version = ext.jipp_version
group = 'com.hp.jipp'
}