Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 222 for Projekts (0.04 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/collector/PomlessCollectionStrategy.java

    import org.apache.maven.project.ProjectBuilder;
    import org.apache.maven.project.ProjectBuildingException;
    import org.apache.maven.project.ProjectBuildingRequest;
    
    /**
     * Strategy to collect projects for building when the Maven invocation is not in a directory that contains a pom.xml.
     */
    @Named("PomlessCollectionStrategy")
    @Singleton
    public class PomlessCollectionStrategy implements ProjectCollectionStrategy {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorSubModulesTest.java

        private LifecycleTaskSegmentCalculator lifeCycleTaskSegmentCalculator;
    
        @Inject
        private ExceptionHandler exceptionHandler;
    
        protected String getProjectsDirectory() {
            return "src/test/projects/lifecycle-executor";
        }
    
        @Test
        void testCreation() throws Exception {
            assertNotNull(defaultLifeCycles);
            assertNotNull(mojoExecutor);
            assertNotNull(lifeCycleBuilder);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/project/MavenProjectHelper.java

     * under the License.
     */
    package org.apache.maven.project;
    
    import java.io.File;
    import java.util.List;
    
    /**
     * Convenience interface for plugins to add or replace artifacts and resources on projects.
     */
    public interface MavenProjectHelper {
        String ROLE = MavenProjectHelper.class.getName();
    
        /**
         * See {@link #attachArtifact(MavenProject, String, String, java.io.File)}, but with type set to null.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            private final Map<String, MavenProject> projectIndex = new ConcurrentHashMap<>(256);
    
            // Store computed repositories per project to avoid leakage between projects
            private final Map<String, List<ArtifactRepository>> projectRepositories = new ConcurrentHashMap<>();
    
            /**
             * Get the effective repositories for a project. If project-specific repositories
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
  5. impl/maven-core/src/test/java/org/apache/maven/plugin/internal/MavenPluginValidatorTest.java

     */
    class MavenPluginValidatorTest extends AbstractCoreMavenComponentTestCase {
        @Inject
        private MavenPluginValidator mavenPluginValidator;
    
        protected String getProjectsDirectory() {
            return "src/test/projects/default-maven";
        }
    
        @Test
        void testValidate() {
            Artifact plugin = new DefaultArtifact(
                    "org.apache.maven.its.plugins",
                    "maven-it-plugin",
                    "0.1",
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

        public void afterSessionStart(MavenSession session) throws MavenExecutionException {
            // do nothing
        }
    
        /**
         * Invoked after all projects were built.
         *
         * This callback is intended to allow extensions to perform cleanup of any
         * allocated external resources after the build. It is invoked on best-effort
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. SECURITY.md

       the security issue. By default MinIO will **not** publish this information to protect your privacy.
    
    This process can take some time, especially when coordination is required with maintainers of other projects.
    Every effort will be made to handle the bug in as timely a manner as possible, however it's important that we
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. docs/de/docs/deployment/fastapicloud.md

    * HTTPS
    * Replikation, mit Autoscaling basierend auf Requests
    * usw.
    
    FastAPI Cloud ist Hauptsponsor und Finanzierer der Open-Source-Projekte *FastAPI and friends*. ✨
    
    ## Bei anderen Cloudanbietern deployen { #deploy-to-other-cloud-providers }
    
    FastAPI ist Open Source und basiert auf Standards. Sie können FastAPI-Apps bei jedem Cloudanbieter Ihrer Wahl deployen.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 02 17:32:56 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  9. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolverTest.java

            return null;
        }
    
        @Test
        void testCachedReactorProjectDependencies() throws Exception {
            MavenSession session = createMavenSession(
                    new File("src/test/projects/lifecycle-dependency-resolver/pom.xml"), new Properties(), true);
            Collection<String> scopesToCollect = null;
            Collection<String> scopesToResolve = Collections.singletonList("compile");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. compat/maven-compat/src/test/java/org/apache/maven/ProjectDependenciesResolverTest.java

        @Inject
        private ProjectDependenciesResolver resolver;
    
        @Override
        protected String getProjectsDirectory() {
            return "src/test/projects/project-dependencies-resolver";
        }
    
        @Test
        void testSystemScopeDependencies() throws Exception {
            MavenSession session = createMavenSession(null);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 3.1K bytes
    - Viewed (0)
Back to top