-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
56 lines (47 loc) · 1.31 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
46
47
48
49
50
51
52
53
54
55
56
plugins {
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version '0.15.0'
id 'java'
id 'maven-publish'
}
group 'de.kontext-e.jqassistant.gradle'
version '3.0.0'
repositories {
mavenCentral()
}
dependencies {
implementation gradleApi()
implementation localGroovy()
implementation 'net.lingala.zip4j:zip4j:2.11.5'
testImplementation gradleTestKit()
testImplementation('org.junit.jupiter:junit-jupiter:5.5.2')
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(11)
}
}
test {
useJUnitPlatform()
}
pluginBundle {
website = 'https://github.com/kontext-e/jqassistant-gradle-plugin'
vcsUrl = 'https://github.com/kontext-e/jqassistant-gradle-plugin'
tags = ['jqassistant','code quality','architecture']
}
publishing{
repositories {
mavenLocal()
}
}
gradlePlugin {
plugins {
jqassistantPlugin {
// publish with ./gradlew publishPlugins
id = 'de.kontext-e.jqassistant.gradle'
displayName = 'jQAssistant Gradle plugin'
description = 'Scans project artifacts, enriches with higher level concepts and applies constraints. See https://jqassistant.org/ for details.'
implementationClass = 'de.kontext_e.jqassistant.gradle.JqassistantGradlePlugin'
}
}
}