Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 136 for Settings (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequestPopulator.java

         * @param settings The settings to copy into the execution request, may be {@code null}.
         * @return The populated execution request, never {@code null}.
         * @throws MavenExecutionRequestPopulationException If the execution request could not be populated.
         */
        @Deprecated
        MavenExecutionRequest populateFromSettings(MavenExecutionRequest request, Settings settings)
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/plugin/PluginManager.java

    import org.apache.maven.plugin.version.PluginVersionResolutionException;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.artifact.InvalidDependencyVersionException;
    import org.apache.maven.settings.Settings;
    import org.codehaus.plexus.component.repository.exception.ComponentLookupException;
    
    /**
     */
    @Deprecated
    public interface PluginManager {
        String ROLE = PluginManager.class.getName();
    
    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)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

     *                                             <td>{@link MavenProject#getExecutionProject()}</td></tr>
     * <tr><td><code>settings</code></td>          <td></td>               <td>{@link MavenSession#getSettings()}</td></tr>
     * <tr><td><code>settings.*</code></td>        <td></td>               <td></td></tr>
     * <tr><td><code>basedir</code></td>           <td></td>
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Oct 17 17:55:08 GMT 2023
    - 16.7K bytes
    - Viewed (0)
  4. .gitignore

    **/target/**
    .project
    .classpath
    .settings/
    .svn/
    # Intellij
    *.ipr
    *.iml
    .idea
    .DS_Store
    /bootstrap
    /dependencies.xml
    .java-version
    .checkstyle
    .factorypath
    .vscode/
    repo/
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 24 18:29:19 GMT 2024
    - 178 bytes
    - Viewed (0)
  5. api/maven-api-settings/src/test/java/org/apache/maven/api/settings/SettingsTest.java

     * under the License.
     */
    package org.apache.maven.api.settings;
    
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertNull;
    
    class SettingsTest {
    
        @Test
        void testSetLocalRepository() {
            Settings s = Settings.newInstance();
    
            s = s.withLocalRepository("xxx");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  6. maven-builder-support/src/main/java/org/apache/maven/building/Problem.java

     * under the License.
     */
    package org.apache.maven.building;
    
    /**
     * Describes a problem that was encountered during settings building. A problem can either be an exception that was
     * thrown or a simple string message. In addition, a problem carries a hint about its source, e.g. the settings file
     * that exhibits the problem.
     *
     */
    public interface Problem {
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelValidator.java

         *
         * @param model The model to validate, must not be {@code null}.
         * @param request The model building request that holds further settings, must not be {@code null}.
         * @param problems The container used to collect problems that were encountered, must not be {@code null}.
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelUrlNormalizer.java

        /**
         * Normalizes the well-known URLs of the specified model.
         *
         * @param model The model whose URLs should be normalized, may be {@code null}.
         * @param request The model building request that holds further settings, must not be {@code null}.
         */
        Model normalize(Model model, ModelBuilderRequest request);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  9. maven-builder-support/src/main/java/org/apache/maven/building/DefaultProblemCollector.java

     * under the License.
     */
    package org.apache.maven.building;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Collects problems that are encountered during settings building.
     *
     */
    class DefaultProblemCollector implements ProblemCollector {
    
        private final List<Problem> problems;
    
        private String source;
    
        DefaultProblemCollector(List<Problem> problems) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

    import org.apache.maven.api.annotations.Nullable;
    import org.apache.maven.api.services.Lookup;
    import org.apache.maven.api.services.LookupException;
    import org.apache.maven.api.services.MavenException;
    import org.apache.maven.api.settings.Settings;
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.bridge.MavenRepositorySystem;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.plugin.MojoExecution;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 12:55:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
Back to top