Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for configured (0.28 sec)

  1. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    getActiveLoggerCount(); static void <clinit>(); } org/codehaus/plexus/personality/plexus/lifecycle/phase/Configurable.class package org.codehaus.plexus.personality.plexus.lifecycle.phase; public abstract interface Configurable { public abstract void configure(org.codehaus.plexus.configuration.PlexusConfiguration) throws org.codehaus.plexus.configuration.PlexusConfigurationE; } org/codehaus/plexus/personality/plexus/lifecycle/phase/Contextualizable.class package org.codehaus.plexus.personality.plexus.lifecycle.phase;...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 35.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

            for (MavenProject p : projectsInRequestScope) {
                if ("bom".equals(p.getPackaging())) {
                    LOGGER.info(
                            "The packaging attribute of the '{}' project is configured as 'bom' and changed to 'pom'",
                            p.getName());
                    p.setPackaging("pom");
                }
            }
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 18.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/MojoExecutionConfigurator.java

         * default configuration for the Mojo from the containing plugin's plugin.xml descriptor.
         *
         * @param project
         * @param mojoExecution
         * @param allowPluginLevelConfig
         */
        void configure(MavenProject project, MojoExecution mojoExecution, boolean allowPluginLevelConfig);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-10/plexus-classworlds-1.2-alpha-10.jar

    or.class package org.codehaus.classworlds; public synchronized class Configurator { private ConfiguratorAdapter config; public void Configurator(Launcher); public void Configurator(ClassWorld); public void setClassWorld(ClassWorld); public void configure(java.io.InputStream) throws java.io.IOException, java.net.MalformedURLExceptio, ConfigurationExcepti, DuplicateRealmExcept, NoSuchRealmException; protected void associateRealms(); protected void loadGlob(String, ClassRealm) throws java.net.MalformedURLExceptio,...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 41.5K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/configuration-management.apt

     The Maven Team
     -----
    
    Configuration levels in maven
    
     In maven configuration control happens on four differ levels: the site level, the group level,
     the project level, and the user level. On the site level you can configure maven for all users
     utilizing the local installation, the group level allows configuration management for all the projects
     that belong to the same group, the project level allows configuration management at
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            fillMojoDescriptor(session, project, mojoExecution);
    
            mojoExecutionConfigurator(mojoExecution)
                    .configure(project, mojoExecution, MojoExecution.Source.CLI.equals(mojoExecution.getSource()));
    
            finalizeMojoConfiguration(mojoExecution);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 26.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScopeModule.java

        protected final MojoExecutionScope scope;
    
        public MojoExecutionScopeModule(MojoExecutionScope scope) {
            this.scope = scope;
        }
    
        @Override
        protected void configure() {
            bindScope(MojoExecutionScoped.class, scope);
            // bindScope(org.apache.maven.api.di.MojoExecutionScoped.class, scope);
            bind(MojoExecutionScope.class).toInstance(scope);
            bind(MavenProject.class)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/prefix/DefaultPluginPrefixRequest.java

         * Creates an empty request.
         */
        public DefaultPluginPrefixRequest() {}
    
        /**
         * Creates a request for the specified plugin prefix and build session. The provided build session will be used to
         * configure repository settings. If the session has a current project, its plugin repositories and model will be
         * used as well.
         *
         * @param prefix The plugin prefix to resolve, must not be {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  9. Jenkinsfile

    node(jenkinsEnv.nodeSelection(osNode)) {
        dir('build') {
            stage('Checkout') {
                checkout scm
            }
    
            def WORK_DIR=pwd()
            def MAVEN_GOAL='verify'
    
            stage('Configure deploy') {
               if (env.BRANCH_NAME in ['master', 'maven-3.8.x', 'maven-3.9.x']){
                   MAVEN_GOAL='deploy'
               }
            }
    
            stage('Build / Unit Test') {
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                while (firstRun || retry) {
                    ChecksumObserver md5ChecksumObserver = null;
                    ChecksumObserver sha1ChecksumObserver = null;
                    try {
                        // TODO configure on repository
                        int i = 0;
    
                        md5ChecksumObserver = addChecksumObserver(wagon, CHECKSUM_ALGORITHMS[i++]);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 29.9K bytes
    - Viewed (0)
Back to top