Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 265 for configurations (0.38 sec)

  1. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      In order to really achieve this, we need mojo configurations (which are
      provided both in terms of static expressions that are just looked up, and
      in terms of user-provided configuration from properties or the POM).
      If these mojos are to be first-class components, the configuration from these
      various sources must be consolidated and injected using the container.
    
      Currently, mojo configuration is done externally to the container, in the
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 30 15:20:35 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  2. api/maven-api-settings/src/main/mdo/settings.mdo

              <name>proxies</name>
              <version>1.0.0+</version>
              <description>
                Configuration for different proxy profiles. Multiple proxy profiles
                might come in handy for anyone working from a notebook or other
                mobile platform, to enable easy switching of entire proxy
                configurations by simply specifying the profile id, again either from
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Parameter.java

        boolean required() default false;
    
        /**
         * Specifies that this parameter cannot be configured directly by the user (as in the case of POM-specified
         * configuration). This is useful when you want to force the user to use common POM elements rather than plugin
         * configurations, as in the case where you want to use the artifact's final name as a parameter. In this case, you
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven3ScopeManagerConfiguration.java

    import static org.eclipse.aether.impl.scope.BuildScopeQuery.select;
    import static org.eclipse.aether.impl.scope.BuildScopeQuery.singleton;
    import static org.eclipse.aether.impl.scope.BuildScopeQuery.union;
    
    /**
     * Maven3 scope configurations. Configures scope manager to support Maven3 scopes.
     * <p>
     * This manager supports the old Maven 3 dependency scopes.
     *
     * @since 2.0.0
     */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  5. maven-core/src/site/apt/configuration-management.apt

     - those that are used locally by the user like <developerConnection/>
    
    * User configuration
    
     User configuration which is utilized site wide are controlled with the ${user.home}/.m2/maven.properties.
    
     User configuration which is utilized at the project level are controlled with the
     ${project.home}/maven.properties file.
    
    Plugin configuration
    
     The configuration of plugins is of the same form as the maven {{{plugin-descriptors}plugin descriptors}}
    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-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven4ScopeManagerConfiguration.java

    import static org.eclipse.aether.impl.scope.BuildScopeQuery.select;
    import static org.eclipse.aether.impl.scope.BuildScopeQuery.singleton;
    import static org.eclipse.aether.impl.scope.BuildScopeQuery.union;
    
    /**
     * Maven4 scope configurations. Configures scope manager to support Maven4 scopes.
     * <p>
     * This manager supports all the new Maven 4 dependency scopes defined in {@link DependencyScope}.
     *
     * @since 2.0.0
     */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainTest.java

            tm1.addProvide("version", "1.5");
            tm1.addProvide("vendor", "sun");
            Xpp3Dom configuration1 = new Xpp3Dom("configuration");
            Xpp3Dom jdkHome1 = new Xpp3Dom("jdkHome");
            jdkHome1.setValue("${env.JAVA_HOME}");
            configuration1.addChild(jdkHome1);
            tm1.setConfiguration(configuration1);
    
            ToolchainModel tm2 = new ToolchainModel();
            tm1.setType("jdk");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            ProjectBuildingRequest configuration = new DefaultProjectBuildingRequest();
            configuration.setRepositorySession(mavenSession.getRepositorySession());
            configuration.setResolveDependencies(true);
            List<ProjectBuildingResult> result = projectBuilder.build(Collections.singletonList(file), true, configuration);
            MavenProject project = result.get(0).getProject();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 18.2K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

            ProjectBuildingRequest configuration = newBuildingRequest();
            configuration.setRemoteRepositories(Arrays.asList(new ArtifactRepository[] {}));
            configuration.setProcessPlugins(false);
            configuration.setResolveDependencies(true);
    
            try {
                return projectBuilder.build(pom, configuration).getProject();
            } catch (Exception e) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  10. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml

        <url>scp://host/path/to/repo</url>
      </snapshotRepository>
    </distributionManagement>
        ]]></configuration>
        <description> This is the ArtifactRepository used to deploy artifacts built by this
          Maven.
        </description>
      </expression>
      <expression>
        <syntax>project.artifact</syntax>
        <configuration>
          <![CDATA[
    <groupId>project.group</groupId>
    <artifactId>project-artifact</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 5.6K bytes
    - Viewed (0)
Back to top