Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for JARs (0.02 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java

                }
            }
            ArrayList<Path> jars = new ArrayList<>();
            if (extClassPath != null && !extClassPath.isEmpty()) {
                for (String jar : extClassPath.split(File.pathSeparator)) {
                    Path file = context.cwdResolver.apply(jar);
                    context.logger.debug("  included '" + file + "'");
                    jars.add(file);
                }
            }
            return jars;
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. apache-maven/pom.xml

                <configuration>
                  <bomClassifier>skinny</bomClassifier>
                  <bomName>Maven Dependencies Skinny BOM</bomName>
                  <bomDescription>Bill Of Materials for Apache Maven - Maven JARS only</bomDescription>
                  <outputFilename>maven-skinny-bom.xml</outputFilename>
                  <usePropertiesForVersion>true</usePropertiesForVersion>
                  <attach>true</attach>
                </configuration>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 13:41:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/ClassPath.java

     * instead of {@code ClassPath}. ClassGraph improves upon {@code ClassPath} in several ways,
     * including addressing many of its limitations. Limitations of {@code ClassPath} include:
     *
     * <ul>
     *   <li>It looks only for files and JARs in URLs available from {@link URLClassLoader} instances or
     *       the {@linkplain ClassLoader#getSystemClassLoader() system class loader}. This means it does
     *       not look for classes in the <i>module path</i>.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  4. docs/bigdata/README.md

    ```
    ./bin/spark-submit --class org.apache.spark.examples.SparkPi \
        --master yarn-client \
        --num-executors 1 \
        --driver-memory 512m \
        --executor-memory 512m \
        --executor-cores 1 \
        examples/jars/spark-examples*.jar 10
    ```
    
    The job should produce an output as shown below. Note the value of pi in the output.
    
    ```
    17/03/22 23:21:10 INFO DAGScheduler: Job 0 finished: reduce at SparkPi.scala:38, took 1.302805 s
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/site/apt/index.apt

    *----+------+------+
    | <<<maven.repo.local>>> | The repository on the local machine Maven shall use to store installed and downloaded artifacts (POMs, JARs, etc). | <<<$\{user.home\}/.m2/repository>>> |
    *----+------+------+
    | <<<*>>> | Java system properties (see {{{https://docs.oracle.com/javase/8/docs/api/java/lang/System.html#getProperties()}JDK reference}}) | <<<$\{user.home\}>>>\
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java

            }
    
            if (!hasBeenPackagedDuringThisSession(project)) {
                // fallback to loose class files only if artifacts haven't been packaged yet
                // and only for plain old jars. Not war files, not ear files, not anything else.
                return determineBuildOutputDirectoryForArtifact(project, artifact);
            }
    
            // The fall-through indicates that the artifact cannot be found;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top