- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for convertToSettingsProfile (0.08 sec)
-
impl/maven-core/src/main/java/org/apache/maven/settings/SettingsUtils.java
} } /** * @param modelProfile * @return a profile */ public static Profile convertToSettingsProfile(org.apache.maven.model.Profile modelProfile) { return new Profile(SettingsUtilsV4.convertToSettingsProfile(modelProfile.getDelegate())); } /** * @param settingsProfile * @return a profile */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java
.properties(props) .repositories(repos) .pluginRepositories(pluginRepos) .build(); Profile clone = SettingsUtilsV4.convertToSettingsProfile(SettingsUtilsV4.convertFromSettingsProfile(p)); assertEquals(p.getId(), clone.getId()); assertEquals(p.getActivation().getJdk(), clone.getActivation().getJdk()); assertEquals(
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 6.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenSession.java
.profiles(request.getProfiles().stream() .map(Profile::getDelegate) .map(SettingsUtilsV4::convertToSettingsProfile) .collect(Collectors.toList())) .activeProfiles(request.getActiveProfiles()) .pluginGroups(request.getPluginGroups()) .build()); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 16.7K bytes - Viewed (0)