-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (37 loc) · 1.17 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
plugins{
id 'de.kontext_e.jqassistant.gradle' version "2.0.0"
id 'java'
id 'signing'
id 'maven-publish'
}
project.ext["jqaversion"] = "2.1.0"
project.group = 'de.kontext-e.jqassistant.plugin'
project.version = '2.1.0'
repositories {
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
implementation 'com.buschmais.jqassistant.core:scanner:' + project.jqaversion
implementation 'com.buschmais.jqassistant.core:report:' + project.jqaversion
implementation 'com.buschmais.jqassistant.plugin:common:' + project.jqaversion
implementation 'com.buschmais.jqassistant.core:store:' + project.jqaversion
testImplementation 'com.buschmais.jqassistant.core:test:' + project.jqaversion
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2'
testImplementation 'org.mockito:mockito-core:5.11.0'
testImplementation 'org.slf4j:slf4j-simple:2.0.13'
}
java {
withJavadocJar()
withSourcesJar()
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
jar {
archiveBaseName = 'jqassistant.plugin.checkstyle'
}