Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getPom (0.04 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            request.setTopDirectory(cliRequest.topDirectory);
            request.setPom(determinePom(commandLine, workingDirectory, baseDirectory));
            request.setTransferListener(determineTransferListener(quiet, verbose, commandLine, request));
            request.setExecutionListener(determineExecutionListener());
    
            if ((request.getPom() != null) && (request.getPom().getParentFile() != null)) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

            MojoDescriptor mojoDescriptor = mojoExecution.getMojoDescriptor();
    
            XmlNode executionConfiguration = mojoExecution.getConfiguration() != null
                    ? mojoExecution.getConfiguration().getDom()
                    : null;
            if (executionConfiguration == null) {
                executionConfiguration = XmlNode.newInstance("configuration");
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                stream(parameter.getSuggestFields()).of(stream -> stream.forEach(builder::addField));
                roleQueryHelper.build(SearchRequestType.SUGGEST).stream().forEach(builder::addRole);
                builder.setSize(parameter.getNum());
                stream(langs).of(stream -> stream.forEach(builder::addLang));
    
                stream(parameter.getTags()).of(stream -> stream.forEach(builder::addTag));
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 55.4K bytes
    - Viewed (1)
  4. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        public Organization getOrganization() {
            return getModel().getOrganization();
        }
    
        public void setScm(Scm scm) {
            getModel().setScm(scm);
        }
    
        public Scm getScm() {
            return getModel().getScm();
        }
    
        public void setMailingLists(List<MailingList> mailingLists) {
            getModel().setMailingLists(mailingLists);
        }
    
        public List<MailingList> getMailingLists() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                    nt.performFor(fa.getExists(), "exists", fa::setExists);
                    nt.performFor(fa.getMissing(), "missing", fa::setMissing);
                });
                a.map(Activation::getOs).ifPresent(oa -> {
                    Interpolation nt = new Interpolation(oa, interpolator::interpolate);
                    nt.performFor(oa.getArch(), "arch", oa::setArch);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 23:08:08 UTC 2025
    - 55.3K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                stk.peek().location = "missing";
                validator.accept(fa.getMissing());
                stk.pop();
                stk.pop();
            });
            root.map(Activation::getOs).ifPresent(oa -> {
                stk.push(new ActivationFrame("os", Optional.of(oa)));
                stk.push(new ActivationFrame("arch", Optional.empty()));
                validator.accept(oa.getArch());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 03 15:06:05 UTC 2025
    - 66.8K bytes
    - Viewed (0)
Back to top