- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 233 for profile2 (0.04 sec)
-
futures/failureaccess/pom.xml
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Oct 02 19:27:26 UTC 2025 - 5.4K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategyTest.java
} private void verifyProfilePhases(Document document) { Element root = document.root(); Element profiles = root.child("profiles").orElse(null); Element profile = profiles.child("profile").orElse(null); Element profileBuild = profile.child("build").orElse(null); Element profilePlugins = profileBuild.child("plugins").orElse(null);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 38.8K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTest.java
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd"> <interactiveMode>false</interactiveMode> <profiles> <profile> <id>oss-development</id> <repositories> <repository> <id>central</id> <url>https://repo1.maven.org/maven2/</url> <releases>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 21 12:17:55 UTC 2025 - 9.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java
/* * MNG-4900: Hack to workaround deficiency of legacy API which makes it impossible for plugins to access the * global profile manager which is required to build a POM like a CLI invocation does. Failure to consider * the activated profiles can cause repo declarations to be lost which in turn will result in artifactRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
options.addOption(Option.builder(Character.toString(ACTIVATE_PROFILES)) .longOpt("activate-profiles") .desc( "Comma-delimited list of profiles to activate. Don't use spaces between commas or double quote the full list. Prefixing a profile with ! excludes it, and ? marks it as optional.") .hasArg() .build());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 04:56:48 UTC 2025 - 17.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
activeProfileId.addAll(request.getProfileActivation().getOptionalActiveProfileIds()); return request.getProfiles().stream() .filter(profile -> activeProfileId.contains(profile.getId())) .map(ModelBase::getProperties) .flatMap(properties -> properties.entrySet().stream()) .filter(e -> e.getValue() != null)
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 17 05:56:35 UTC 2025 - 25.8K bytes - Viewed (0) -
impl/maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml
<distributionManagement> <site> <id>apache.website</id> <url>scp://people.apache.org/www/maven.apache.org/ref/${project.version}/</url> </site> </distributionManagement> <profiles> <profile> <id>osgi</id> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.4K bytes - Viewed (0) -
compat/maven-model-builder/src/site/apt/index.apt
({{{./xref/org/apache/maven/model/normalization/DefaultModelNormalizer.html}source}}) ** profile injection: <<<ProfileInjector>>> ({{{./apidocs/org/apache/maven/model/profile/ProfileInjector.html}javadoc}}), with its <<<DefaultProfileInjector>>> implementation ({{{./xref/org/apache/maven/model/profile/DefaultProfileInjector.html}source}}) ** parent resolution until {{{./super-pom.html}super-pom}}Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 03 08:42:52 UTC 2025 - 13.2K bytes - Viewed (0) -
impl/maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml
<distributionManagement> <site> <id>apache.website</id> <url>scp://people.apache.org/www/maven.apache.org/ref/${project.version}/</url> </site> </distributionManagement> <profiles> <profile> <id>osgi</id> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
project.setArtifacts(artifacts); return resolutionResult; } } private List<String> getProfileIds(List<Profile> profiles) { return profiles.stream().map(Profile::getId).collect(Collectors.toList()); } private static ModelSource createStubModelSource(Artifact artifact) { String xml = "<?xml version='1.0'?>" + "<project>"
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 51.8K bytes - Viewed (0)