Skip to content

Commit 45dcf75

Browse files
committed
Replaced logger with Log4j
1 parent dc8c0c4 commit 45dcf75

14 files changed

Lines changed: 3228 additions & 4046 deletions

File tree

build.gradle

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
plugins {
2-
id "java"
3-
id "com.github.johnrengelman.shadow" version "8.1.1"
4-
id "io.github.intisy.github-gradle" version "1.4.4"
5-
id "io.github.intisy.online-gradle" version "1.7.2"
6-
}
7-
8-
online {
9-
debug = true
10-
autoUpdate = true
11-
updateDelay = 3600
12-
presets = [
13-
"https://raw.githubusercontent.com/intisy/gradle-snippets/presets/default.preset:1.8",
14-
"https://raw.githubusercontent.com/intisy/gradle-snippets/presets/publish.preset"
15-
]
16-
}
17-
18-
repositories {
19-
mavenLocal()
20-
mavenCentral()
21-
}
22-
23-
java {
24-
sourceCompatibility = JavaVersion.VERSION_1_8
25-
targetCompatibility = JavaVersion.VERSION_1_8
26-
}
27-
28-
dependencies {
29-
githubImplementation "intisy:simple-logger:2.1.5"
30-
implementation "org.apache.httpcomponents:httpclient:4.5.14"
31-
implementation "org.kohsuke:github-api:1.99"
32-
implementation "com.google.code.gson:gson:2.11.0"
33-
implementation "org.eclipse.jgit:org.eclipse.jgit:5.13.3.202401111512-r"
34-
implementation "org.kohsuke:github-api:1.324"
35-
implementation "com.github.codemonstur:embedded-redis:1.4.3"
36-
implementation "org.slf4j:slf4j-api:1.7.36"
37-
implementation "org.slf4j:slf4j-simple:1.7.36"
38-
testImplementation "junit:junit:4.12"
1+
plugins {
2+
id "java"
3+
id "com.github.johnrengelman.shadow" version "8.1.1"
4+
id "io.github.intisy.online-gradle" version "1.7.2"
5+
}
6+
7+
online {
8+
debug = true
9+
autoUpdate = true
10+
updateDelay = 3600
11+
presets = [
12+
"https://raw.githubusercontent.com/intisy/gradle-snippets/presets/default.preset:1.8",
13+
"https://raw.githubusercontent.com/intisy/gradle-snippets/presets/publish.preset"
14+
]
15+
}
16+
17+
repositories {
18+
mavenLocal()
19+
mavenCentral()
20+
}
21+
22+
java {
23+
sourceCompatibility = JavaVersion.VERSION_1_8
24+
targetCompatibility = JavaVersion.VERSION_1_8
25+
}
26+
27+
dependencies {
28+
implementation "org.apache.logging.log4j:log4j-api:2.23.1"
29+
implementation "org.apache.logging.log4j:log4j-core:2.23.1"
30+
implementation "org.apache.httpcomponents:httpclient:4.5.14"
31+
implementation "org.kohsuke:github-api:1.99"
32+
implementation "com.google.code.gson:gson:2.11.0"
33+
implementation "org.eclipse.jgit:org.eclipse.jgit:5.13.3.202401111512-r"
34+
implementation "org.kohsuke:github-api:1.324"
35+
implementation "com.github.codemonstur:embedded-redis:1.4.3"
36+
implementation "org.slf4j:slf4j-api:1.7.36"
37+
implementation "org.slf4j:slf4j-simple:1.7.36"
38+
testImplementation "junit:junit:4.12"
3939
}

0 commit comments

Comments
 (0)