-
-
Notifications
You must be signed in to change notification settings - Fork 410
/
build.gradle
69 lines (57 loc) · 1.96 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
plugins {
id "org.sonarqube" version "3.0"
id 'org.cadixdev.licenser' version '0.6.1'
}
// Apply the java plugin to add support for Java
apply plugin: 'java'
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
configurations {
checkstyleConfig
}
// Apply the checkstyle plugin
apply plugin: 'checkstyle'
checkstyle {
toolVersion = '10.3.4'
config = resources.text.fromArchiveEntry(configurations.checkstyleConfig, 'google_checks.xml')
maxErrors = 0
maxWarnings = 0
}
sonarqube {
properties {
property "sonar.projectKey", "iluwatar_30-seconds-of-java"
property "sonar.organization", "iluwatar"
property "sonar.host.url", "https://sonarcloud.io"
}
}
// In this section you declare where to find the dependencies of your project
repositories {
// Use 'jcenter' for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
// In this section you declare the dependencies for your production and test code
dependencies {
// The production code uses the SLF4J logging API at compile time
implementation 'org.slf4j:slf4j-api:2.0.5'
// Declare the dependency for your favourite test framework you want to use in your tests.
// TestNG is also supported by the Gradle Test task. Just change the
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
// 'test.useTestNG()' to your build script.
testImplementation 'org.hamcrest:hamcrest-library:1.3'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.6.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
checkstyleConfig dependencies.create("com.puppycrawl.tools:checkstyle:${checkstyle.toolVersion}") {
transitive = false
}
}
test {
useJUnitPlatform()
}
license {
skipExistingHeaders = true
include '**/*.java'
}