-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathbuild.gradle
99 lines (85 loc) · 3.07 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
plugins {
id 'java-gradle-plugin'
id 'com.gradle.plugin-publish' version '0.18.0'
id 'com.github.johnrengelman.shadow' version '7.1.2'
}
configurations {
fetchInstrumentationJar
}
dependencies {
shadow gradleApi()
shadow localGroovy()
implementation project(":utbot-framework")
implementation group: "io.github.microutils", name: "kotlin-logging", version: kotlinLoggingVersion
testImplementation group: "org.mockito", name: "mockito-core", version: mockitoVersion
testImplementation group: "org.mockito", name: "mockito-inline", version: mockitoInlineVersion
fetchInstrumentationJar project(path: ':utbot-instrumentation', configuration: 'instrumentationArchive')
}
// needed to prevent inclusion of gradle-api into shadow JAR
configurations.api.dependencies.remove dependencies.gradleApi()
configurations.all {
exclude group: "org.apache.logging.log4j", module: "log4j-slf4j-impl"
}
configurations {
customCompile.extendsFrom api // then customCompile.setCanBeResolved == true
}
/**
* Shadow plugin unpacks the nested `utbot-instrumentation-<version>.jar`.
* But we need it to be packed. Workaround: double-nest the jar.
*/
task shadowBugWorkaround(type: Jar) {
destinationDirectory = layout.buildDirectory.dir('build/shadow-bug-workaround')
from(configurations.fetchInstrumentationJar) {
into "lib"
}
}
// Documentation: https://imperceptiblethoughts.com/shadow/
shadowJar {
manifest {
// 'Fat JAR' is needed in org.utbot.framework.codegen.model.util.DependencyUtilsKt.checkDependencyIsFatJar
attributes 'JAR-Type': 'Fat JAR'
attributes 'Class-Path': project.configurations.customCompile.collect { it.getName() }.join(' ')
}
archiveClassifier.set('')
minimize()
from shadowBugWorkaround
}
// no module metadata => no dependency on the `utbot-framework`
tasks.withType(GenerateModuleMetadata) {
enabled = false
}
publishing {
publications {
pluginMaven(MavenPublication) {
pom.withXml {
// removing a dependency to `utbot-framework` from the list of dependencies
asNode().dependencies.dependency.each { dependency ->
if (dependency.artifactId[0].value() == 'utbot-framework') {
assert dependency.parent().remove(dependency)
}
}
}
}
}
repositories {
maven {
url = layout.buildDirectory.dir('repo')
}
}
}
pluginBundle {
website = 'https://www.utbot.org/'
vcsUrl = 'https://github.com/UnitTestBot/UTBotJava/'
tags = ['java', 'unit-testing', 'tests-generation', 'sarif']
}
gradlePlugin {
plugins {
sarifReportPlugin {
version = '1.0.0-alpha' // last published version
id = 'org.utbot.gradle.plugin'
displayName = 'UnitTestBot gradle plugin'
description = 'The gradle plugin for generating tests and creating SARIF reports based on UnitTestBot'
implementationClass = 'org.utbot.gradle.plugin.SarifGradlePlugin'
}
}
}