- Sort Score
- Num 10 results
- Language All
Results 151 - 160 of 661 for dependency_b (0.07 seconds)
-
compat/maven-resolver-provider/src/test/resources/repo/ut/simple/artifact/1.0/artifact-1.0.pom
<name>Simple Unit Test Artifact</name> <dependencies> <dependency> <groupId>ut.simple</groupId> <artifactId>dependency</artifactId> </dependency> <dependency> <groupId>ut.simple</groupId> <artifactId>dependency</artifactId> <version>1.0</version> <classifier>sources</classifier> </dependency> </dependencies>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.6K bytes - Click Count (0) -
compat/maven-model-builder/src/test/resources/poms/depmgmt/root-distance.xml
<dependencyManagement> <dependencies> <dependency> <groupId>test</groupId> <artifactId>other</artifactId> <version>0.1-SNAPSHOT</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.junit</groupId> <artifactId>bom</artifactId>Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinatesFactoryRequest.java
return builder() .session(requireNonNull(session, "session cannot be null")) .groupId(requireNonNull(dependency, "dependency").getGroupId()) .artifactId(dependency.getArtifactId()) .version(dependency.getVersion().toString()) .classifier(dependency.getClassifier())
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 12.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/Maven3CompatDependenciesValidator.java
for (org.eclipse.aether.graph.Dependency dependency : artifactDescriptorResult.getDependencies()) { if ("org.apache.maven".equals(dependency.getArtifact().getGroupId()) && "maven-compat".equals(dependency.getArtifact().getArtifactId()) && !DependencyScope.TEST.is(dependency.getScope())) { pluginValidationManager.reportPluginValidationIssue(
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.4K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Node.java
import org.apache.maven.api.annotations.Nonnull; import org.apache.maven.api.annotations.Nullable; import org.apache.maven.api.annotations.Provider; /** * Represents a dependency node within a Maven project's dependency collector. * * @since 4.0.0 * @see org.apache.maven.api.services.DependencyResolverResult#getRoot() */ @Experimental @Immutable @Provider public interface Node { /**
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Mar 24 14:10:11 GMT 2025 - 4.2K bytes - Click Count (0) -
impl/maven-core/src/test/projects/project-builder/MNG-7648/pom.xml
<dependencies> <dependency> <groupId>org.apache.maven.its</groupId> <artifactId>bom</artifactId> <version>0.1</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.apache.maven.its</groupId>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.4K bytes - Click Count (0) -
docs/ru/docs/tutorial/dependencies/index.md
Она спроектирована так, чтобы быть очень простой в использовании и облегчать любому разработчику интеграцию других компонентов с **FastAPI**. ## Что такое инъекция зависимостей («Dependency Injection») { #what-is-dependency-injection } В программировании **«Dependency Injection»** означает, что у вашего кода (в данном случае у ваших *функций обработки пути*) есть способ объявить вещи, которые требуются для его работы и использования: «зависимости».Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Sep 30 11:24:39 GMT 2025 - 15.4K bytes - Click Count (1) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java
/** * Tries to resolve the POM for the specified dependency coordinates possibly updating {@code dependency}. * <p> * Unlike the {@link #resolveModel(java.lang.String, java.lang.String, java.lang.String)} method, this method * supports version ranges and updates the given {@code dependency} instance to match the returned * {@code ModelSource}. If {@code dependency} declares a version range, the version corresponding to the returnedCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 5.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
Dependency dependency = new Dependency(); dependency.setArtifactId(a.getArtifactId()); dependency.setGroupId(a.getGroupId()); dependency.setVersion(a.getVersion()); dependency.setScope(a.getScope()); dependency.setType(a.getType()); dependency.setClassifier(a.getClassifier());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Aug 29 12:47:20 GMT 2025 - 67K bytes - Click Count (0) -
impl/maven-core/src/test/projects/project-builder/mng-3023/dependency/pom.xml
<artifactId>parent</artifactId> <version>1</version> </parent> <artifactId>dependency</artifactId> <name>Maven Integration Test :: MNG-3023 :: Dependency</name> <description>Test that reactor projects are included in dependency resolution.</description> <build> <outputDirectory>dependency-classes</outputDirectory> <plugins> <plugin> <groupId>org.apache.maven.its.plugins</groupId>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.2K bytes - Click Count (0)