Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 331 for Log4j (0.1 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/declaring-capabilities.sample.conf

    commands: [{
        executable: gradle
        args: "dependencyInsight --configuration compileClasspath --dependency log4j"
        flags: "--quiet"
        expected-output-file: dependencyReport.out
        expect-failure: false
    },{
        executable: gradle
        args: "dependencyInsight --configuration compileClasspath --dependency log4j -Preplace"
        flags: "--quiet"
        expected-output-file: dependencyReportReplaced.out
        expect-failure: false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 436 bytes
    - Viewed (0)
  2. test-site/build.sbt

    libraryDependencies += "org.apache.httpcomponents" % "httpclient" % "4.3.1"
    
    libraryDependencies += "org.codehaus.groovy" % "groovy-all" % "2.4.0"
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Apr 01 05:40:58 UTC 2016
    - 968 bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.pom

      <description>Commons Logging</description>
      <url>http://jakarta.apache.org/commons/logging/</url>
      <inceptionYear>2001</inceptionYear>
      <build />
      <dependencies>
        <dependency>
          <groupId>log4j</groupId>
          <artifactId>log4j</artifactId>
          <version>1.2.6</version>
          <optional>true</optional>
        </dependency>
        <dependency>
          <groupId>logkit</groupId>
          <artifactId>logkit</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 866 bytes
    - Viewed (0)
  4. gradle/dependency-management/capabilities.json

    //
    // The idea is that such "rules" could be published, then applied by a plugin.
    //
    // Whenever two libraries provide the same capability, for example, "log4j" and "log4j-over-slfj4",
    // it's illegal to have both of them on the classpath. Use this file to declare that they provide
    // the same capability, and that we prefer to use slf4j in this case.
    [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/TestAntTask.java

            org.apache.commons.logging.LogFactory.getLog("ant-test").info("a jcl log message");
            org.slf4j.LoggerFactory.getLogger("ant-test").info("an slf4j log message");
            org.apache.log4j.Logger.getLogger("ant-test").info("a log4j log message");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 23 15:32:00 UTC 2018
    - 1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-fileDependencies/groovy/build.gradle

    // tag::file-dependencies[]
    configurations {
        antContrib
        externalLibs
        deploymentTools
    }
    
    dependencies {
        antContrib files('ant/antcontrib.jar')
        externalLibs files('libs/commons-lang.jar', 'libs/log4j.jar')
        deploymentTools(fileTree('tools') { include '*.exe' })
    }
    // end::file-dependencies[]
    
    tasks.register('createLibs') {
        def projectDir = layout.projectDirectory
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-fileDependencies/kotlin/build.gradle.kts

    configurations {
        create("antContrib")
        create("externalLibs")
        create("deploymentTools")
    }
    
    dependencies {
        "antContrib"(files("ant/antcontrib.jar"))
        "externalLibs"(files("libs/commons-lang.jar", "libs/log4j.jar"))
        "deploymentTools"(fileTree("tools") { include("*.exe") })
    }
    // end::file-dependencies[]
    
    tasks.register("createLibs") {
        val projectDir = layout.projectDirectory
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/FessApiAdminAction.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.app.web.api.FessApiAction;
    import org.codelibs.fess.exception.InvalidAccessTokenException;
    
    public abstract class FessApiAdminAction extends FessApiAction {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ingest/IngestFactory.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.ingest;
    
    import java.util.Arrays;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    
    public class IngestFactory {
        private static final Logger logger = LogManager.getLogger(IngestFactory.class);
    
        private Ingester[] ingesters = {};
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiCreator.java

     */
    package org.codelibs.fess.dict.kuromoji;
    
    import java.util.Date;
    
    import javax.annotation.PostConstruct;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.dict.DictionaryCreator;
    import org.codelibs.fess.dict.DictionaryFile;
    import org.codelibs.fess.dict.DictionaryItem;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top