Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for If (0.08 sec)

  1. maven-model-builder/src/test/resources/poms/validation/raw-model/ok-ci-friendly-sha1.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-sha1</artifactId>
      <version>${sha1}</version>
    
      <description>
        This will test if the validation for the ci friendly versions
        is working correct.
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  2. apache-maven/src/assembly/maven/conf/settings.xml

       |
       | Default: ${user.home}/.m2/repository
      <localRepository>/path/to/local/repo</localRepository>
      -->
    
      <!-- interactiveMode
       | This will determine whether maven prompts you when it needs input. If set to false,
       | maven will use a sensible default value, perhaps based on some other setting, for
       | the parameter in question.
       |
       | Default: true
      <interactiveMode>true</interactiveMode>
      -->
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/unique-repo-id/plugin-repo-in-profile/pom.xml

      <version>0.1</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-4193</name>
      <description>
        Test that multiple plugin repository declarations with the same id cause a validation error even if the
        repositories are defined within a (non-active) profile.
      </description>
    
      <profiles>
        <profile>
          <id>test</id>
          <pluginRepositories>
            <pluginRepository>
              <id>one</id>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  4. api/maven-api-metadata/src/main/mdo/metadata.mdo

            if ( versioning != null )
            {
                Versioning v = getVersioning();
                if ( v == null )
                {
                    v = new Versioning();
                    setVersioning( v );
                    changed = true;
                }
    
                for ( String version : versioning.getVersions() )
                {
                    if ( !v.getVersions().contains( version ) )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. apache-maven/src/assembly/maven/conf/toolchains.xml

       |   matching <provides/> configuration. You can decide for yourself which key-value
       |   pairs to use. Often used keys are 'version', 'vendor' and 'arch'. By default
       |   the version has a special meaning. If you configured in the pom.xml '1.5'
       |   Maven will search for 1.5 and above.
       |
       | * configuration: Additional configuration for this tool.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  6. api/maven-api-settings/src/main/mdo/settings.mdo

        /**
         * @return the first active proxy
         */
        public synchronized Proxy getActiveProxy() {
            if (activeProxy == null) {
                java.util.List<Proxy> proxies = getProxies();
                if (proxies != null && !proxies.isEmpty()) {
                    for (Proxy proxy : proxies) {
                        if (proxy.isActive()) {
                            activeProxy = proxy;
                            break;
                        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. maven-model-builder/src/test/resources/poms/validation/raw-model/ok-ci-friendly-revision.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-revision</artifactId>
      <version>${revision}</version>
    
      <description>
        This will test if the validation for the ci friendly versions
        is working correct.
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/validation/raw-model/bad-ci-friendly-sha1plus2.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-sha1plus</artifactId>
      <version>${sha1}${wrong}${revision}</version>
    
      <description>
        This will test if the validation for the ci friendly versions
        is working correct.
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-components/1.1.6/plexus-components-1.1.6.pom

    <!--
    
     !!!
    
     NOTE: If you change this file, you MUST bump the version up from 1.0. That is the version of the POM, and was
     used for releases of plexus-compiler and plexus-archiver in the past.
    
     !!!
    
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <parent>
        <artifactId>plexus</artifactId>
        <groupId>org.codehaus.plexus</groupId>
        <version>1.0.8</version>
      </parent>
      <groupId>org.codehaus.plexus</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/validation/raw-model/bad-parent-version-latest.xml

        <version>LATEST</version>
      </parent>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-wrong</artifactId>
      <version>1.0</version>
    
      <description>
        This will test if the validation for the parent version
        is working correct in case of usage of LATEST
      </description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:50:27 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top