Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 222 for Projekts (0.05 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java

            String g2 = artifact.getGroupId();
            String a2 = artifact.getArtifactId();
            String v2 = artifact.getBaseVersion().toString();
    
            // ArtifactId may differ only for multi-module projects, in which case
            // it must match the module name from a source root in modular sources.
            boolean isMultiModule = false;
            boolean validArtifactId = Objects.equals(a1, a2);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Dec 17 16:17:01 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeInvoker.java

                        context.style.italic().bold().foreground(Colors.rgbColor("green")),
                        "Maven Upgrade " + CLIReportingUtils.showVersionMinimal());
                context.addInHeader("Tool for upgrading Maven projects and dependencies.");
                context.addInHeader("This tool is part of Apache Maven 4 distribution.");
                context.addInHeader("");
    
                context.terminal.handle(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

        }
    
        protected void performProjectActivation(MavenContext context, ProjectActivation projectActivation) {
            if (context.options().projects().isPresent()
                    && !context.options().projects().get().isEmpty()) {
                List<String> optionValues = context.options().projects().get();
                for (final String optionValue : optionValues) {
                    for (String token : optionValue.split(",")) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 11 17:20:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  4. impl/maven-core/src/test/java/org/apache/maven/DefaultMavenTest.java

            }
        }
    
        @Inject
        private Maven maven;
    
        @Override
        protected String getProjectsDirectory() {
            return "src/test/projects/default-maven";
        }
    
        @Test
        void testEnsureResolverSessionHasMavenWorkspaceReader() throws Exception {
            WsrClassCatcher wsrClassCatcher =
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Mar 21 04:56:21 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  5. impl/maven-core/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    wagon-ssh 1.0-alpha-5 org.apache.maven.wagon wagon-file 1.0-alpha-5 org.apache.maven.wagon wagon-http-lightweight 1.0-alpha-5 repo1 Maven Central Repository scp://repo1.maven.org/home/projects/maven/repository-staging/to-ibiblio/maven2 snapshots Maven Central Development Repository scp://repo1.maven.org/home/projects/maven/repository-staging/snapshots/maven2 website scp://minotaur.apache.org/www/maven.apache.org/maven2/maven-plugin-api META-INF/maven/org.apache.maven/maven-plugin-api/pom.properties...
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/ProjectDependencyGraphStub.java

                }
            }
    
            void addIfUpstreamOf(MavenProject mavenProject, List<MavenProject> result) {
                if (dependant == mavenProject) {
                    result.add(dependency); // All projects are the statics from this class
                }
            }
        }
    
        private List<Dependency> getDependencies() {
            List<Dependency> dependencies = new ArrayList<>();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Repository.java

     * By understanding and properly configuring repositories, developers can control where Maven looks for dependencies, manage access to proprietary artifacts, and optimize the build process to ensure consistency and reliability across projects.
     *
     * @since 4.0.0
     * @see RemoteRepository
     * @see LocalRepository
     */
    @Experimental
    @Immutable
    public interface Repository {
    
        /**
         * The reserved id for Maven Central
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/bigger-applications.md

    * Die Abhängigkeit `get_token_header`.
    * Die Response `418`. 🍵
    
    Dies wirkt sich jedoch nur auf diesen `APIRouter` in unserer Anwendung aus, nicht auf anderen Code, der ihn verwendet.
    
    So könnten beispielsweise andere Projekte denselben `APIRouter` mit einer anderen Authentifizierungsmethode verwenden.
    
    ### Eine *Pfadoperation* hinzufügen { #include-a-path-operation }
    
    Wir können *Pfadoperationen* auch direkt zur `FastAPI`-App hinzufügen.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 10 13:54:34 UTC 2025
    - 21.3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java

            return new PathSource(requireNonNull(path, "path"));
        }
    
        /**
         * Creates a new build source for the specified path.
         * Build sources are used for POM files of projects being built by Maven
         * in the filesystem and support resolving related POMs.
         *
         * @param path the path to the POM file or project directory
         * @return a new ModelSource instance configured as a build source
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:45:25 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectBuildList.java

                projectKeys.add(key);
            }
            return projectKeys;
        }
    
        public boolean isEmpty() {
            return items.isEmpty();
        }
    
        /**
         * @return a set of all the projects managed by the build
         */
        public Set<MavenProject> getProjects() {
            return items.stream().map(ProjectSegment::getProject).collect(Collectors.toSet());
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top