-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
62 lines (51 loc) · 1.45 KB
/
build.gradle
File metadata and controls
62 lines (51 loc) · 1.45 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
apply plugin: 'base'
apply plugin: 'idea'
apply plugin: 'build-time-tracker'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath "net.rdrei.android.buildtimetracker:gradle-plugin:0.11.+"
classpath 'io.spring.gradle:dependency-management-plugin:1.1.7'
}
}
buildtimetracker {
reporters {
summary {
ordered false
threshold 50
barstyle "unicode"
}
}
}
subprojects {
group "com.microting"
version "1.1"
apply plugin: "java-library"
apply plugin: "io.spring.dependency-management"
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
}
dependencyManagement {
imports {
mavenBom "org.junit:junit-bom:5.10.2"
}
dependencies {
dependency 'net.sf.jasperreports:jasperreports:6.19.1'
dependency 'commons-io:commons-io:2.19.0'
dependency 'xalan:xalan:2.7.3'
dependency 'org.apache.poi:poi:5.4.1'
dependency 'org.apache.logging.log4j:log4j-1.2-api:2.24.3'
dependency 'org.apache.logging.log4j:log4j-core:2.24.3'
dependency 'org.apache.commons:commons-lang3:3.19.0'
}
}
println "moduleName: ${it.name}"
}
wrapper {
distributionUrl = 'https://services.gradle.org/distributions/gradle-8.12-bin.zip'
}