Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for Reporting (0.14 sec)

  1. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

            translatedPrefixes.add("build.sourceDirectory");
            translatedPrefixes.add("build.testSourceDirectory");
            translatedPrefixes.add("build.scriptSourceDirectory");
            translatedPrefixes.add("reporting.outputDirectory");
    
            TRANSLATED_PATH_EXPRESSIONS = translatedPrefixes;
        }
    
        @Inject
        private PathTranslator pathTranslator;
    
        private Interpolator interpolator;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            if (validationReportLevel == ValidationReportLevel.NONE
                    || validationReportLevel == ValidationReportLevel.INLINE) {
                return; // we were asked to not report anything OR reporting already happened inline
            }
            ConcurrentHashMap<String, PluginValidationIssues> issuesMap = pluginIssues(mavenSession.getRepositorySession());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

                    && profile.getReporting() == null;
        }
    
        private static <T extends ModelBase.Builder> T prune(T builder, ModelBase model) {
            builder.properties(null).reporting(null);
            if (model.getDistributionManagement() != null
                    && model.getDistributionManagement().getRelocation() != null) {
                // keep relocation only
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. maven-core/src/main/resources/META-INF/maven/extension.xml

        <exportedPackage>org.apache.maven.plugin</exportedPackage>
        <exportedPackage>org.apache.maven.profiles</exportedPackage>
        <exportedPackage>org.apache.maven.project</exportedPackage>
        <exportedPackage>org.apache.maven.reporting</exportedPackage>
        <exportedPackage>org.apache.maven.repository</exportedPackage>
        <exportedPackage>org.apache.maven.rtinfo.*</exportedPackage>
        <exportedPackage>org.apache.maven.settings</exportedPackage>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

            translatedPrefixes.add("build.sourceDirectory");
            translatedPrefixes.add("build.testSourceDirectory");
            translatedPrefixes.add("build.scriptSourceDirectory");
            translatedPrefixes.add("reporting.outputDirectory");
    
            TRANSLATED_PATH_EXPRESSIONS = translatedPrefixes;
        }
    
        private final PathTranslator pathTranslator;
        private final UrlNormalizer urlNormalizer;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. maven-core/src/site/apt/offline-mode.apt

      operations.
    
      Offline mode really means anticipating a lack of network connectivity, and as
      a result turning off certain services provided by m2 and providing a coherent
      way of predicting and reporting when network-related failures will take place.
      It means warning users that since the network is missing, certain features and
      operations will be unavailable, rather than simply waiting for those
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

                    // The current BindingContext does not have the diagnostics for each individual candidate, only for the resolved call.
                    // If there are multiple candidates, we can get each one's diagnostics by reporting it to a new BindingTrace.
                    val candidateTrace = DelegatingBindingTrace(this, "Trace for candidate", withParentDiagnostics = false)
                    if (candidate is NewAbstractResolvedCall<*>) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. doap_Maven.rdf

    object model: builds, dependency management, documentation creation, site publication, and distribution publication are all controlled from the declarative file. Maven can be extended by plugins to utilise a number of other development tools for reporting or the build process. https://issues.apache.org/jira/browse/MNG https://maven.apache.org/mailing-lists.html https://maven.apache.org/download.html Java http://projects.apache.org/category/build-management Apache Maven 4.0.0-alpha-7 2023-06-28 4.0.0-alpha-7...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 01 11:47:44 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    description) { description.appendText(fixedDescription); } } org/hamcrest/Description.java org/hamcrest/Description.java package org.hamcrest; /** * A description of a Matcher. A Matcher will describe itself to a description * which can later be used for reporting. * * @see Matcher#describeTo(Description) */ public interface Description { /** * A description that consumes input but does nothing. */ static final Description NONE = new NullDescription(); /** * Appends some plain text to the description. */ Description...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

        }
    
        private void wireRealm(ClassRealm classRealm, List<String> parentImports, Map<String, ClassLoader> foreignImports) {
            if (foreignImports != null && !foreignImports.isEmpty()) {
                logger.debug("Importing foreign packages into class realm {}", classRealm.getId());
    
                for (Map.Entry<String, ClassLoader> entry : foreignImports.entrySet()) {
                    ClassLoader importedRealm = entry.getValue();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top