- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for getLocations (0.15 sec)
-
compat/maven-model/src/main/java/org/apache/maven/model/InputLocation.java
} else { return getOtherLocation(key); } } // -- InputLocation getLocation( Object ) /** * * * @return Map */ public java.util.Map<Object, InputLocation> getLocations() { return locations; } // -- java.util.Map<Object, InputLocation> getLocations() /** * * * @param key * @param location */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java
} LOGGER.debug( "Reading installation settings from '{}'", getLocation(settingsRequest.getGlobalSettingsSource(), settingsRequest.getGlobalSettingsFile())); LOGGER.debug( "Reading project settings from '{}'", getLocation(settingsRequest.getProjectSettingsSource(), settingsRequest.getProjectSettingsFile())); LOGGER.debug(
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/test/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilderTest.java
import org.junit.jupiter.api.extension.ExtendWith; import org.mockito.InjectMocks; import org.mockito.Spy; import org.mockito.junit.jupiter.MockitoExtension; import static org.apache.maven.internal.impl.StaxLocation.getLocation; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.doReturn;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java
} builder.properties(merged); builder.location( "properties", InputLocation.merge( target.getLocation("properties"), source.getLocation("properties"), sourceDominant)); } private void putAll(Map<String, String> s, Map<String, String> t, Object excludeKey) { for (Map.Entry<String, String> e : t.entrySet()) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java
} @Override public InputStream openStream() throws IOException { return Files.newInputStream(src); } @Override public String getLocation() { return src.toString(); } @Override public Source resolve(String relative) { return ModelSource.fromPath(path.resolve(relative)); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java
} trackingData.add(indent + plugin.getGroupId() + ":" + plugin.getArtifactId() + ":" + plugin.getVersion()); indent += " "; InputLocation location = plugin.getLocation(""); if (location != null && location.getSource() != null) { trackingData.add(indent + location.getSource().getModelId() + " (implicit)"); indent += " "; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.8K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/JapicmpTask.java
ProtectionDomain domain = clazz.getProtectionDomain(); CodeSource codeSource = domain.getCodeSource(); if (codeSource != null) { try { classpath.add(new File(codeSource.getLocation().toURI())); } catch (URISyntaxException e) { // silent } } } private List<JApiCmpWorkerAction.Archive> inferArchives(FileCollection fc) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Apr 26 10:58:32 UTC 2023 - 13.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvoker.java
for (BuilderProblem problem : toolchainsResult.getProblems()) { context.logger.warn(problem.getMessage() + " @ " + problem.getLocation()); } context.logger.warn(""); } } @Override protected void populateRequest(C context, MavenExecutionRequest request) throws Exception {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 29.8K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
</field> </fields> <codeSegments> <codeSegment> <version>2.0.0+</version> <code> @Override public String toString() { return getLocation(); } </code> </codeSegment> </codeSegments> </class> </classes>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Oct 08 13:46:42 UTC 2024 - 33.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
for (BuilderProblem problem : settingsResult.getProblems()) { context.logger.warn(problem.getMessage() + " @ " + problem.getLocation()); } context.logger.warn(""); } } protected void customizeSettingsRequest(C context, SettingsBuilderRequest settingsBuilderRequest) throws Exception {}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38K bytes - Viewed (0)