-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (33 loc) · 1.04 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
plugins {
id 'jacoco'
id 'java'
id 'org.sonarqube' version '2.8'
}
group = 'io.github.henryssondaniel.teacup.example'
version = '1.0.0-SNAPSHOT'
dependencies {
testImplementation('io.github.henryssondaniel.teacup:core:1.2.1-SNAPSHOT')
testImplementation('io.github.henryssondaniel.teacup.engine:junit:1.1.5-SNAPSHOT')
testImplementation('io.github.henryssondaniel.teacup:protocol:1.0.1-SNAPSHOT')
testImplementation('io.github.henryssondaniel.teacup.protocol:ftp:1.0.1-SNAPSHOT')
testImplementation('io.github.henryssondaniel.teacup.protocol:http:1.2.1-SNAPSHOT')
testImplementation('io.github.henryssondaniel.teacup.protocol:telnet:1.0.1-SNAPSHOT')
}
repositories {
mavenLocal()
jcenter()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
sonarqube {
properties {
property "sonar.projectKey", "HenryssonDaniel_teacup-java-example-junit"
}
}
test {
useJUnitPlatform {
includeEngines 'teacup'
}
testLogging {
showStandardStreams = true
}
}