Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 564 for scope3 (0.03 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/ConnectedResource.java

     */
    @SuppressWarnings("deprecation")
    class ConnectedResource extends Resource {
        private final SourceRoot originalSourceRoot;
        private final ProjectScope scope;
        private final MavenProject project;
    
        ConnectedResource(SourceRoot sourceRoot, ProjectScope scope, MavenProject project) {
            super(org.apache.maven.api.model.Resource.newBuilder()
                    .directory(sourceRoot.directory().toString())
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 07 13:11:07 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml

            <artifactId>plexus-jetty6</artifactId>
            <version>${plexusJetty6Version}</version>
            <scope>test</scope>
          </dependency>
          <dependency>
            <groupId>org.sonatype.spice</groupId>
            <artifactId>plexus-webdav</artifactId>
            <version>${plexusWebdavVersion}</version>
            <scope>test</scope>
          </dependency>
    
          <!--  Wagon -->
          <dependency>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/impl/AuthenticationImpl.java

         * @param authScope The authentication scope.
         * @param credentials The credentials.
         */
        public AuthenticationImpl(final AuthScope authScope, final Credentials credentials) {
            this(authScope, credentials, null);
        }
    
        /**
         * Initializes the AuthenticationImpl with the provided AuthScope, Credentials, and AuthScheme.
         * @param authScope The authentication scope.
         * @param credentials The credentials.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/test/resources/poms/depmgmt/root-distance-explicit.xml

                    <type>pom</type>
                    <scope>import</scope>
                </dependency>
                <dependency>
                    <groupId>org.junit</groupId>
                    <artifactId>bom</artifactId>
                    <version>0.2</version>
                    <type>pom</type>
                    <scope>import</scope>
                </dependency>
                <dependency>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

            MavenSession oldSession = legacySupport.getSession();
    
            scope.enter();
    
            try {
                scope.seed(MavenProject.class, project);
                scope.seed(MojoExecution.class, mojoExecution);
                scope.seed(
                        org.apache.maven.api.plugin.Log.class,
                        new DefaultLog(LoggerFactory.getLogger(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  6. maven-tests/pom.xml

            <version>[5.2.0-SNAPSHOT,6.0.0-SNAPSHOT)</version>
            <type>pom</type>
            <scope>import</scope>
          </dependency>
        </dependencies>
      </dependencyManagement>
    
      <dependencies>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>4.13.2</version>
          <scope>test</scope>
        </dependency>
    
        <dependency>
          <groupId>com.squareup.okhttp3</groupId>
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Jul 13 08:32:01 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  7. compat/maven-model-builder/src/test/resources/poms/validation/basedir-system-path.xml

          <groupId>test</groupId>
          <artifactId>a</artifactId>
          <version>0.2</version>
          <scope>system</scope>
          <systemPath>${basedir}/lib/a.jar</systemPath>
        </dependency>
        <dependency>
          <groupId>test</groupId>
          <artifactId>b</artifactId>
          <version>0.1</version>
          <scope>system</scope>
          <systemPath>${project.basedir}/lib/b.jar</systemPath>
        </dependency>
      </dependencies>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. README.md

    - **Customizable Scoring**: User boost, document frequency, and query frequency weighting
    
    ## Technology Stack
    
    - **Java**: 21+ (configured via parent POM)
    - **OpenSearch**: Latest (provided scope)
    - **Apache Lucene**: Query parsing and text analysis
    - **ICU4J**: Unicode text processing and normalization
    - **JUnit 4**: Testing framework
    - **Maven**: Build and dependency management
    
    ## Quick Start
    
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Sun Aug 31 03:31:14 UTC 2025
    - 12.1K bytes
    - Viewed (1)
  9. impl/maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution.scope.internal;
    
    import java.util.Collection;
    import java.util.IdentityHashMap;
    
    import com.google.inject.Key;
    import com.google.inject.Provider;
    import com.google.inject.Scope;
    import com.google.inject.name.Named;
    import org.apache.maven.execution.MojoExecutionEvent;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

     * under the License.
     */
    package org.apache.maven.session.scope.internal;
    
    import java.lang.annotation.Annotation;
    
    import com.google.inject.Key;
    import com.google.inject.Provider;
    import com.google.inject.Scope;
    import com.google.inject.name.Named;
    
    /**
     * SessionScope
     */
    public class SessionScope extends org.apache.maven.impl.di.SessionScope implements Scope {
    
        public <T> void seed(Class<T> clazz, Provider<T> value) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top