Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for getFrom (0.27 sec)

  1. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

                throws MavenExecutionException {
            if (request.getPom() == null) {
                return projects;
            }
    
            MavenProject requestPomProject = projects.stream()
                    .filter(project -> request.getPom().equals(project.getFile()))
                    .findFirst()
                    .orElseThrow(() -> new MavenExecutionException(
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 18.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

            }
        }
    
        private PluginVersionResult resolveFromProject(PluginVersionRequest request) {
            PluginVersionResult result = null;
    
            if (request.getPom() != null && request.getPom().getBuild() != null) {
                Build build = request.getPom().getBuild();
    
                result = resolveFromProject(request, build.getPlugins());
    
                if (result == null && build.getPluginManagement() != null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/version/DefaultPluginVersionRequest.java

            return artifactId;
        }
    
        public DefaultPluginVersionRequest setArtifactId(String artifactId) {
            this.artifactId = artifactId;
    
            return this;
        }
    
        public Model getPom() {
            return pom;
        }
    
        public DefaultPluginVersionRequest setPom(Model pom) {
            this.pom = pom;
    
            return this;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                    "org.apache.maven.its.plugins:maven-it-plugin:0.1:java", session, session.getCurrentProject());
            XmlNode dom = MojoDescriptorCreator.convert(mojoDescriptor).getDom();
            System.out.println(dom);
        }
    
        MavenExecutionPlan calculateExecutionPlan(MavenSession session, String... tasks) throws Exception {
            List<TaskSegment> taskSegments =
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

        private File getMultiModuleProjectPomFile(MavenExecutionRequest request) {
            File multiModuleProjectDirectory = request.getMultiModuleProjectDirectory();
            if (request.getPom().getParentFile().equals(multiModuleProjectDirectory)) {
                return request.getPom();
            } else {
                File multiModuleProjectPom = modelLocator.locateExistingPom(multiModuleProjectDirectory);
                if (multiModuleProjectPom == null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 9.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleExecutionPlanCalculator.java

            MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
    
            XmlNode executionConfiguration = mojoExecution.getConfiguration() != null
                    ? mojoExecution.getConfiguration().getDom()
                    : null;
            if (executionConfiguration == null) {
                executionConfiguration = new XmlNodeImpl("configuration");
            }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 26.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/prefix/DefaultPluginPrefixRequest.java

                this.pluginGroups = Collections.unmodifiableList(pluginGroups);
            } else {
                this.pluginGroups = Collections.emptyList();
            }
    
            return this;
        }
    
        public Model getPom() {
            return pom;
        }
    
        public DefaultPluginPrefixRequest setPom(Model pom) {
            this.pom = pom;
    
            return this;
        }
    
        public List<RemoteRepository> getRepositories() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            copy.setGoals(original.getGoals());
            copy.setRecursive(original.isRecursive());
            copy.setPom(original.getPom());
            copy.setSystemProperties(original.getSystemProperties());
            copy.setUserProperties(original.getUserProperties());
            copy.setShowErrors(original.isShowErrors());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        // Recursive (really to just process the top-level POM)
        MavenExecutionRequest setRecursive(boolean recursive);
    
        boolean isRecursive();
    
        MavenExecutionRequest setPom(File pom);
    
        File getPom();
    
        // Errors
        MavenExecutionRequest setShowErrors(boolean showErrors);
    
        boolean isShowErrors();
    
        // Transfer listeners
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultMojoExecution.java

        public String getGoal() {
            return delegate.getGoal();
        }
    
        @Override
        public Optional<XmlNode> getConfiguration() {
            return Optional.of(delegate.getConfiguration()).map(Xpp3Dom::getDom);
        }
    
        @Override
        public String toString() {
            return delegate.toString();
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.2K bytes
    - Viewed (0)
Back to top