Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for square (0.27 sec)

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

         * @param artifactId never {@code null}
         * @param version can be {@code null}
         * @return the matching model or {@code null}
         * @throws IllegalStateException if version was null and multiple modules share the same groupId + artifactId
         */
        public Model get(String groupId, String artifactId, String version) {
            return modelsByGa.getOrDefault(new GAKey(groupId, artifactId), Collections.emptySet()).stream()
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/configuration-management.apt

    +-----+
    ${maven.home}
         |
         +--- maven.properties
    +-----+
    
    * Group configuration
    
     As far as properties go for an entire build the maven.properties could be placed at
     the top of the group but I'm not really sure how this might work. There could probably
     also be a directory for plugins.xml and maven.properties.
    
    * Project configuration
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/BuildListCalculator.java

                    MavenProject currentProject = session.getCurrentProject();
                    try {
                        BuilderCommon.attachToThread(project); // Not totally sure if this is needed for anything
                        session.setCurrentProject(project);
                        projectBuilds.add(new ProjectSegment(project, taskSegment, session));
                    } finally {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  4. apache-maven/README.txt

        Unix-based operating systems (Linux, Solaris and Mac OS X)
          export PATH=/usr/local/apache-maven-4.x.y/bin:$PATH
        Windows
          set PATH="c:\program files\apache-maven-4.x.y\bin";%PATH%
    
      4) Make sure JAVA_HOME is set to the location of your JDK
    
      5) Run "mvn --version" to verify that it is correctly installed.
    
      For complete documentation, see https://maven.apache.org/download.html#Installation
    
      Licensing
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Mar 13 20:21:20 GMT 2021
    - 2.5K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java

                path = path.replace("\\", "/");
                // ---------------------------------------------------------------------------------
                // I'm not sure if this last regexp was really intended to disallow the usage of
                // network paths as user.home directory. Unfortunately it did. I removed it and
                // have not detected any problems yet.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

         * is in the Antlr plugin which comes bundled with a version of Antlr but the user often times needs
         * to use a specific version. We need to make sure the version that they specify takes precedence.
         */
        @Test
        void testMojoWhereInternallyStatedDependencyIsOverriddenByProject() throws Exception {}
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

            ArtifactHandler handler = newHandler(artifact);
    
            /*
             * NOTE: From Artifact.hasClassifier(), an empty string and a null both denote "no classifier". However, some
             * plugins only check for null, so be sure to nullify an empty classifier.
             */
            org.apache.maven.artifact.Artifact result = new org.apache.maven.artifact.DefaultArtifact(
                    artifact.getGroupId(),
                    artifact.getArtifactId(),
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 16K bytes
    - Viewed (0)
  8. maven-core/src/main/resources/META-INF/maven/extension.xml

        <exportedPackage>jakarta.inject.*</exportedPackage>
        <exportedPackage>jakarta.annotation.*</exportedPackage>
    
        <!--
          | We may potentially want to export these, but right now I'm not sure that anything Guice specific needs
          | to be made available to plugin authors. If we find people are getting fancy and want to take advantage of
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/RepositorySystemSupplier.java

     * graph construction.
     * <p>
     * Extend this class {@code createXXX()} methods and override to customize, if needed. The contract of this class makes
     * sure that these (potentially overridden) methods are invoked only once, and instance created by those methods are
     * memorized and kept as long as supplier instance is kept open.
     * <p>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 26 13:10:42 GMT 2024
    - 43.7K bytes
    - Viewed (0)
  10. .github/pull_request_template.md

    Following this checklist to help us incorporate your
    contribution quickly and easily:
    
     - [ ] Make sure there is a [JIRA issue](https://issues.apache.org/jira/browse/MNG) filed
           for the change (usually before you start working on it).  Trivial changes like typos do not
           require a JIRA issue. Your pull request should address just this issue, without
           pulling in other changes.
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 20 13:14:27 GMT 2022
    - 1.9K bytes
    - Viewed (0)
Back to top