- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 251 for rcprofile (0.09 sec)
-
apache-maven/src/assembly/maven/conf/settings.xml
| to accomplish, particularly when you only have a list of profile id's for debug. | | This profile example uses the JDK version to trigger activation, and provides a JDK-specific repo. <profile> <id>jdk-1.4</id> <activation> <jdk>1.4</jdk> </activation> <repositories>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 22 07:44:50 UTC 2025 - 11.1K bytes - Viewed (0) -
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) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java
*/ List<Profile> getProfiles(); /** * Sets the external profiles that should be considered for model building. * * @param profiles The external profiles that should be considered for model building, may be {@code null}. * @return This request, never {@code null}. */ ModelBuildingRequest setProfiles(List<Profile> profiles); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 12.8K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java
"only-active-profile", "Active only ||${project.basedir}||", "<plugin-in-active-profile-only>Active only ||${project.basedir}||</plugin-in-active-profile-only>"); // ============================================= Profile inactiveProfile = originalModel.getProfiles().stream() .filter(profile -> profile.getId().equals("inactiveProfile"))Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 94.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
null, "must be unique but found duplicate profile with id " + profile.getId(), profile); } validate30RawProfileActivation(problems, profile.getActivation(), prefix); validate20RawDependencies(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 03 15:06:05 UTC 2025 - 66.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 43.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileActivationContext.java
* KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.maven.model.profile; import java.io.File; import java.util.Collections; import java.util.List; import java.util.Map; import java.util.Properties; import static java.util.stream.Collectors.collectingAndThen;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 7.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java
return this; } @Override public List<Profile> getProfiles() { if (profiles == null) { profiles = new ArrayList<>(); } return profiles; } @Override public DefaultModelBuildingRequest setProfiles(List<Profile> profiles) { if (profiles != null) { this.profiles = new ArrayList<>(profiles);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 9.2K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulatorTest.java
MavenExecutionRequest request = new DefaultMavenExecutionRequest(); Repository r = new Repository(); r.setId("test"); r.setUrl("file:///test"); Profile p = new Profile(); p.setId("test"); p.addPluginRepository(r); Settings settings = new Settings(); settings.addProfile(p); settings.addActiveProfile(p.getId());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
* and does not include profiles from parent projects. * * @return a non-null, possibly empty list of profiles defined in this project * @see Profile * @see #getEffectiveProfiles() */ @Nonnull List<Profile> getDeclaredProfiles(); /** * Returns all profiles defined in this project and all of its parent projects. * <p>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 07 13:11:07 UTC 2025 - 15.3K bytes - Viewed (0)