Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for standard (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

    // wiring and reference and external source for the lifecycle configuration.
    @Named
    @Singleton
    public class DefaultLifecycles {
        public static final String[] STANDARD_LIFECYCLES = {"clean", "default", "site", "wrapper"};
    
        private final Logger logger = LoggerFactory.getLogger(getClass());
    
        // @Configuration(source="org/apache/maven/lifecycle/lifecycles.xml")
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/DefaultLifecyclesStub.java

                    .iterator();
    
            Map<String, Lifecycle> lifeCycles = new HashMap<>();
            for (String s : DefaultLifecycles.STANDARD_LIFECYCLES) {
                final Lifecycle lifecycle = new Lifecycle(s, lcs.next(), null);
                lifeCycles.put(s, lifecycle);
            }
    
            PlexusContainer mockedContainer = mock(PlexusContainer.class);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/DistributionManagementArtifactRelocationSource.java

    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Relocation source from standard distribution management. This is the "one and only" relocation implementation that
     * existed in Maven 3 land, uses POM distributionManagement/relocation.
     * <p>
     * Note: this component should kick-in last regarding relocations.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/lifecycle/DefaultLifecyclesTest.java

        @Test
        void testDefaultLifecycles() {
            final List<Lifecycle> lifecycles = defaultLifeCycles.getLifeCycles();
            assertThat(lifecycles, hasSize(4));
            assertThat(DefaultLifecycles.STANDARD_LIFECYCLES, arrayWithSize(4));
        }
    
        @Test
        void testDefaultLifecycle() {
            final Lifecycle lifecycle = getLifeCycleById("default");
            assertThat(lifecycle.getId(), is("default"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.3K bytes
    - Viewed (0)
Back to top