Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 334 for modelVersion1 (0.09 sec)

  1. impl/maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java

        }
    
        private Model newTestModel() {
            Model model = new Model();
            model.setGroupId("modelGroup1");
            model.setArtifactId("modelArtifact1");
            model.setVersion("modelVersion1");
    
            return model;
        }
    
        @Test
        void testDebugEnabled() throws PlexusContainerException {
            Logger logger = mock(Logger.class);
            when(logger.isDebugEnabled()).thenReturn(true);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/test/resources/poms/validation/bad-modelVersion.xml

    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>99.0.0</modelVersion>
      <groupId>foo</groupId>
      <artifactId>bar</artifactId>
      <version>0.1</version>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 907 bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/test/resources/poms/validation/modelVersion-4_0.xml

    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0</modelVersion>
      <groupId>foo</groupId>
      <artifactId>bar</artifactId>
      <version>0.1</version>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 904 bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtils.java

         *
         * @param modelVersion the model version to validate
         * @return true if the model version is valid
         */
        public static boolean isValidModelVersion(String modelVersion) {
            return MODEL_VERSION_4_0_0.equals(modelVersion)
                    || MODEL_VERSION_4_1_0.equals(modelVersion)
                    || MODEL_VERSION_4_2_0.equals(modelVersion);
        }
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/test/resources/poms/validation/missing-modelVersion-pom.xml

    Guillaume Nodet <******@****.***> 1729859506 +0200
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 901 bytes
    - Viewed (0)
  6. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/TestUtils.java

         * Creates upgrade options with only the --model-version option set.
         *
         * @param modelVersion the --model-version option value
         * @return configured upgrade options
         */
        public static UpgradeOptions createOptionsWithModelVersion(String modelVersion) {
            return createOptions(null, null, null, null, modelVersion);
        }
    
        /**
         * Creates upgrade options with only the --plugins option set.
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  7. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/PomBuilder.java

        private final List<Property> properties = new ArrayList<>();
    
        public static PomBuilder create() {
            return new PomBuilder();
        }
    
        public PomBuilder modelVersion(String modelVersion) {
            this.modelVersion = modelVersion;
            return this;
        }
    
        public PomBuilder namespace(String namespace) {
            this.namespace = namespace;
            return this;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  8. compat/maven-compat/src/test/resources/inheritance-repo/t04/maven-test/poms/t04-b-1.0.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven-test</groupId>
      <artifactId>t04-b</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 176 bytes
    - Viewed (0)
  9. compat/maven-compat/src/test/resources/inheritance-repo/t06/maven-test/poms/t06-d-1.2.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven-test</groupId>
      <artifactId>t06-d</artifactId>
      <packaging>jar</packaging>
      <version>1.2</version>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 176 bytes
    - Viewed (0)
  10. compat/maven-compat/src/test/resources/inheritance-repo/t10/maven-test/poms/t10-c-1.0.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven-test</groupId>
      <artifactId>t10-c</artifactId>
      <packaging>jar</packaging>
      <version>1.0</version>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 176 bytes
    - Viewed (0)
Back to top