forked from calimero-project/calimero-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
121 lines (102 loc) · 2.46 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
buildscript {
repositories {
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
jcenter()
}
dependencies {
classpath 'com.github.ben-manes:gradle-versions-plugin:0.28.0'
}
}
repositories {
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
ext.junitJupiterVersion = '5.6.0'
ext.desc = 'Calimero, a free KNX network library'
apply plugin: 'java-library'
apply plugin: 'maven-publish'
apply plugin:'application'
apply plugin: 'com.github.ben-manes.versions'
group = 'com.github.calimero'
version = '2.5-SNAPSHOT'
sourceCompatibility = 11
targetCompatibility = 11
compileJava.options.encoding = 'UTF-8'
compileTestJava.options.encoding = 'UTF-8'
compileJava.options*.compilerArgs = [
'-Xlint:all',
'-Xlint:-options',
// '-Werror'
"--limit-modules", "java.base,java.xml"
]
compileTestJava.options*.compilerArgs = [
'-Xlint:all',
'-Xlint:-try',
]
mainClassName = 'tuwien.auto.calimero.Settings'
sourceSets {
main {
java.srcDirs = ['src']
resources.srcDirs = ['resources']
}
test {
java.srcDirs = ['test']
java.exclude 'resources/', '**/.gradle'
resources.srcDirs = ['test/resources']
}
}
task testJar(type: Jar) {
classifier = 'tests'
from sourceSets.test.output
from("${projectDir}") {
include 'LICENSE*'
into "META-INF"
}
}
task testSourcesJar(type: Jar, dependsOn: classes) {
classifier = 'testSources'
from sourceSets.test.allSource
from("${projectDir}") {
include 'LICENSE*'
into "META-INF"
}
}
artifacts {
archives testJar
archives testSourcesJar
}
jar {
manifest {
attributes 'Main-Class': mainClassName
}
}
test {
useJUnitPlatform() {
excludeTags 'ft12', 'slow'
// excludeTags 'knxnetip'
testLogging {
// exceptionFormat "full"
// showStandardStreams true
}
}
}
publishing {
publications {
maven(MavenPublication) {
artifact testJar {
classifier "tests"
}
artifact testSourcesJar {
classifier "test-sources"
}
}
}
}
dependencies {
api 'org.slf4j:slf4j-api:2.0.0-alpha1'
api 'org.usb4java:usb4java-javax:1.3.0'
testImplementation "org.junit.jupiter:junit-jupiter:${junitJupiterVersion}"
testCompileOnly 'junit:junit:4.13'
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junitJupiterVersion}"
}