Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for Blog (0.32 sec)

  1. maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/w-plugin-mgmt/pom.xml

              <artifactId>maven-it-plugin-log-file</artifactId>
              <version>2.1-SNAPSHOT</version>
            </plugin>
          </plugins>
        </pluginManagement>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-log-file</artifactId>
            <configuration>
              <logFile>target/exec.log</logFile>
              <string>exec</string>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/sub/pom.xml

          <snapshots/>
          <releases/>
        </repository>
      </repositories>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-log-file</artifactId>
            <version>2.1-SNAPSHOT</version>
            <executions>
              <execution>
                <id>equal-build-exec-id</id>
                <phase>initialize</phase>
                <goals/>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLog.java

     * under the License.
     */
    package org.apache.maven.internal.impl;
    
    import java.util.function.Supplier;
    
    import org.apache.maven.api.plugin.Log;
    import org.slf4j.Logger;
    
    import static java.util.Objects.requireNonNull;
    
    public class DefaultLog implements Log {
        private final Logger logger;
    
        public DefaultLog(Logger logger) {
            this.logger = requireNonNull(logger);
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java

            implements WagonManager {
    
        // NOTE: This must use a different field name than in the super class or IoC has no chance to inject the loggers
        @Inject
        private Logger log;
    
        @Inject
        private LegacySupport legacySupport;
    
        @Inject
        private SettingsDecrypter settingsDecrypter;
    
        @Inject
        private MirrorSelector mirrorSelector;
    
        @Inject
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    dateTimeFormat; protected static java.text.DateFormat dateFormatter; public static final int LOG_LEVEL_TRACE = 1; public static final int LOG_LEVEL_DEBUG = 2; public static final int LOG_LEVEL_INFO = 3; public static final int LOG_LEVEL_WARN = 4; public static final int LOG_LEVEL_ERROR = 5; public static final int LOG_LEVEL_FATAL = 6; public static final int LOG_LEVEL_ALL = 0; public static final int LOG_LEVEL_OFF = 7; protected String logName; protected int currentLogLevel; private String shortLogName;...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 37.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/w-merge/pom.xml

          <!-- NOTE: It's essential part of this test variant to redefine the test plugin again, i.e. trigger plugin merging -->
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-log-file</artifactId>
            <version>2.1-SNAPSHOT</version>
          </plugin>
        </plugins>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java

        private String passphrase;
    
        public Authentication(String userName, String password) {
            this.username = userName;
            this.password = password;
        }
    
        /**
         * Username used to log in to the host
         */
        private String username;
    
        /**
         * Password associated with the login
         */
        private String password;
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 3.1K bytes
    - Viewed (0)
  8. apache-maven/src/assembly/maven/conf/logging/simplelogger.properties

    org.slf4j.simpleLogger.cacheOutputStream=true
    org.slf4j.simpleLogger.levelInBrackets=true
    org.slf4j.simpleLogger.log.Sisu=info
    org.slf4j.simpleLogger.warnLevelString=WARNING
    
    # MNG-6181: mvn -X also prints all debug logging from HttpClient
    org.slf4j.simpleLogger.log.org.apache.http=off
    Properties
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 16 16:19:23 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/pom.xml

            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-log-file</artifactId>
            <version>2.1-SNAPSHOT</version>
            <executions>
              <execution>
                <id>inherited-execution</id>
                <inherited>true</inherited>
                <phase>validate</phase>
                <goals>
                  <goal>log-string</goal>
                </goals>
                <configuration>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                public List<MavenProject> getDownstreamProjects(MavenProject project, boolean transitive) {
                    return Collections.emptyList();
                }
            });
    
            final List<String> log = new ArrayList<>();
    
            MojoExecutionListener mojoListener = new MojoExecutionListener() {
                public void beforeMojoExecution(MojoExecutionEvent event) throws MojoExecutionException {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
Back to top