-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathbuild.gradle
More file actions
46 lines (37 loc) · 1.08 KB
/
build.gradle
File metadata and controls
46 lines (37 loc) · 1.08 KB
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
plugins {
id 'application'
id 'eclipse'
}
sourceCompatibility = 17
targetCompatibility = 17
distTar.enabled=false
distZip.enabled=true
mainClassName='kieker.tools.cmi.CheckModelIntegrityMain'
sourceSets.main.resources.srcDirs = [ '../resources' ]
dependencies {
implementation project(":common")
implementation project(":analysis")
implementation project(":tools")
implementation "com.beust:jcommander:${jcommanderVersion}"
implementation "com.edwardraff:JSAT:0.0.9"
testImplementation project (path: ':common', configuration: 'testArchives')
testImplementation project (path: ':tools', configuration: 'testArchives')
testImplementation "org.mockito:mockito-core:5.23.0"
testImplementation "de.cau.cs.se.teetime:teetime:${libTeetimeVersion}:test"
}
task uploadArchives {
println 'cmi skipped'
}
eclipse {
classpath {
file {
whenMerged { classpath ->
classpath.entries.removeAll { entry ->
entry instanceof org.gradle.plugins.ide.eclipse.model.ProjectDependency
&& ['/common', '/tools'].contains(entry.path)
&& entry.entryAttributes['test']
}
}
}
}
}