File: logging.gradle

package info (click to toggle)
gradle 4.4.1-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 85,488 kB
  • sloc: java: 319,990; xml: 14,356; javascript: 4,838; cpp: 4,200; ansic: 1,025; sh: 303; makefile: 66; asm: 17; jsp: 17; objc: 10
file content (31 lines) | stat: -rw-r--r-- 772 bytes parent folder | download | duplicates (3)
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
/**
 * Logging infrastructure.
 */
apply plugin: 'java-library'

sourceCompatibility = javaVersion.java9Compatible ? 1.7 : 1.5

dependencies {
    api project(':baseServices')
    api project(":messaging")
    api project(":cli")
    api project(":buildOption")
    api libraries.slf4j_api

    implementation project(":native")
    implementation libraries.jul_to_slf4j
    implementation libraries.ant
    implementation libraries.commons_lang
    implementation libraries.guava
    implementation libraries.jansi
    implementation libraries.jcip

    runtimeOnly libraries.log4j_to_slf4j
    runtimeOnly libraries.jcl_to_slf4j

    testImplementation project(":internalTesting")
}

useTestFixtures()

useClassycle(exclude: ["org/gradle/internal/featurelifecycle/**"])