Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 614 for SLF4j (0.03 sec)

  1. maven-slf4j-wrapper/pom.xml

      </parent>
    
      <artifactId>maven-slf4j-wrapper</artifactId>
    
      <name>Maven SLF4J Wrapper</name>
      <description>This modules provides an ILoggerFactory interface which avoids a cyclic dependency between maven-embedder and maven-slf4j-provider.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.slf4j</groupId>
          <artifactId>slf4j-api</artifactId>
        </dependency>
    
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tutorial/logging/groovy/build.gradle

        doFirst {
            println 'A task message which is logged at INFO level'
        }
    }
    // end::task-capture-stdout[]
    
    // tag::use-slf4j[]
    import org.slf4j.LoggerFactory
    
    def slf4jLogger = LoggerFactory.getLogger('some-logger')
    slf4jLogger.info('An info log message logged using SLF4j')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/groovy/build.gradle

    }
    
    // tag::dependencies[]
    dependencies {
        // This dependency will bring log4:log4j transitively
        implementation 'org.apache.zookeeper:zookeeper:3.4.9'
    
        // We use log4j over slf4j
        implementation 'org.slf4j:log4j-over-slf4j:1.7.10'
    }
    // end::dependencies[]
    
    // tag::use_highest_asm[]
    configurations.all {
        resolutionStrategy.capabilitiesResolution.withCapability('org.ow2.asm:asm') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/site/xdoc/maven-deps.odg

    settings-builder model-builder model cipher interpolation wagon-provider-api classworlds repository-metadata settings resolver api spi impl util resolver-provider builder-support jansi slf4j-api shared-utils slf4j-provider bom toolchain-builder toolchain-model meta di xml model plugin toolchain core spi xml-impl xml settings jline3 compat slf4j-wrapper jline woodstox api-impl di metadata...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 24 16:01:00 UTC 2024
    - 37K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGStaticLoggingIntegrationTest.groovy

                public class FooTest {
                    private final static org.slf4j.Logger SLF4J = org.slf4j.LoggerFactory.getLogger(FooTest.class);
                    private final static java.util.logging.Logger JUL = java.util.logging.Logger.getLogger(FooTest.class.getName());
    
                    @Test public void foo() {
                      SLF4J.info("slf4j info");
                      JUL.info("jul info");
                      JUL.warning("jul warning");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                rootProject.name = 'transform-deps'
                include 'common', 'lib', 'app'
            """
            withColorVariants(mavenHttpRepo.module("org.slf4j", "slf4j-api", "1.7.24")).publish().allowAll()
            withColorVariants(mavenHttpRepo.module("org.slf4j", "slf4j-api", "1.7.25")).publish().allowAll()
            withColorVariants(mavenHttpRepo.module("junit", "junit", "4.11"))
                .dependsOn("hamcrest", "hamcrest-core", "1.3")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitLoggingOutputCaptureIntegrationTest.groovy

                public class FooTest {
                    private final static org.slf4j.Logger SLF4J = org.slf4j.LoggerFactory.getLogger(FooTest.class);
                    private final static java.util.logging.Logger JUL = java.util.logging.Logger.getLogger(FooTest.class.getName());
    
                    @Test
                    public void foo() {
                      SLF4J.info("slf4j info");
                      JUL.info("jul info");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/kotlin/build.gradle.kts

    }
    
    // tag::dependencies[]
    dependencies {
        // This dependency will bring log4:log4j transitively
        implementation("org.apache.zookeeper:zookeeper:3.4.9")
    
        // We use log4j over slf4j
        implementation("org.slf4j:log4j-over-slf4j:1.7.10")
    }
    // end::dependencies[]
    
    // tag::use_highest_asm[]
    configurations.all {
        resolutionStrategy.capabilitiesResolution.withCapability("org.ow2.asm:asm") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/project1/build.gradle

    ant.echo('A debug message logged from Ant', level: org.apache.tools.ant.types.LogLevel.DEBUG)
    
    // START SNIPPET use-slf4j
    org.slf4j.Logger slf4jLogger = org.slf4j.LoggerFactory.getLogger('some-logger')
    slf4jLogger.info('An info log message logged using SLF4j')
    // END SNIPPET use-slf4j
    
    org.apache.commons.logging.Log jclLogger = org.apache.commons.logging.LogFactory.getLog('some-logger')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/Slf4jLoggingConfigurer.java

     */
    
    package org.gradle.internal.logging.slf4j;
    
    import org.gradle.api.logging.LogLevel;
    import org.gradle.internal.logging.config.LoggingConfigurer;
    import org.gradle.internal.logging.events.OutputEventListener;
    import org.slf4j.ILoggerFactory;
    import org.slf4j.LoggerFactory;
    
    /**
     * A {@link LoggingConfigurer} implementation which configures custom slf4j binding to route logging events to a provided {@link
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top