Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 328 for profile (0.07 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/project/DefaultProjectBuilderTest.java

            }
    
            @Override
            public List<Profile> getActivePomProfiles() {
                return List.of();
            }
    
            @Override
            public List<Profile> getActivePomProfiles(String modelId) {
                return List.of();
            }
    
            @Override
            public java.util.Map<String, List<Profile>> getActivePomProfilesByModel() {
                return java.util.Map.of();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProject.java

                    .toList();
        }
    
        @Override
        @Nonnull
        public List<Profile> getDeclaredActiveProfiles() {
            return project.getActiveProfiles().stream()
                    .map(org.apache.maven.model.Profile::getDelegate)
                    .toList();
        }
    
        @Override
        @Nonnull
        public List<Profile> getEffectiveActiveProfiles() {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Mar 24 22:23:23 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  3. guava-bom/pom.xml

            <version>${central-publishing-maven-plugin.version}</version>
            <extensions>true</extensions>
          </plugin>
        </plugins>
      </build>
    
      <profiles>
        <profile>
          <id>sonatype-oss-release</id>
          <build>
            <plugins>
              <plugin>
                <artifactId>maven-gpg-plugin</artifactId>
                <version>${maven-gpg-plugin.version}</version>
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 29 19:50:42 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelData.java

        }
    
        /**
         * Gets the active profiles from the model.
         *
         * @return The active profiles or {@code null} if not set.
         */
        public List<Profile> getActiveProfiles() {
            return activeProfiles;
        }
    
        /**
         * Sets the active profiles from the model.
         *
         * @param activeProfiles The active profiles, may be {@code null}.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  5. compat/maven-model-builder/pom.xml

                  <!--              <exclude>org.apache.maven.model.profile.ProfileInjector#injectProfile(org.apache.maven.api.model.Model,org.apache.maven.api.model.Profile,org.apache.maven.model.building.ModelBuildingRequest,org.apache.maven.model.building.ModelProblemCollector):METHOD_NEW_DEFAULT</exclude>-->
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  6. impl/maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml

                  </archive>
                </configuration>
              </plugin>
            </plugins>
          </build>
        </profile>
        <profile>
          <id>release</id>
          <build>
            <plugins>
              <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <inherited>false</inherited>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  7. impl/maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java

                pluginRepos.add(r);
            }
            Profile p = Profile.newBuilder()
                    .id("id" + Long.toHexString(entropy.nextLong()))
                    .activation(a)
                    .properties(props)
                    .repositories(repos)
                    .pluginRepositories(pluginRepos)
                    .build();
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 24 17:29:44 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  8. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

            }
    
            private void visit(Profile profile) {
                if (profile != null) {
                    String org, val;
                    // ModelBase
                    visit((ModelBase) profile);
                    // Id
                    org = profile.getId();
                    val = interpolate(org);
                    if (org != val) {
                        profile.setId(val);
                    }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

              profile.</description>
            </field>
          </fields>
        </class>
        <class>
          <name>ActivationFile</name>
          <version>4.0.0+</version>
          <description>This is the file specification used to activate the profile. The {@code missing} value
            is the location of a file that needs to exist, and if it doesn't, the profile will be
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Nov 26 03:07:35 UTC 2025
    - 133.3K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                            artifact.setFile(path.toFile());
                        }
                    }
                }
                project.setResolvedArtifacts(artifacts);
                project.setArtifacts(artifacts);
    
                return resolutionResult;
            }
        }
    
        private List<String> getProfileIds(List<Profile> profiles) {
            return profiles.stream().map(Profile::getId).collect(Collectors.toList());
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
Back to top