Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Blank (0.16 sec)

  1. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/GroupRepositoryMetadata.java

            return false;
        }
    
        public ArtifactRepository getRepository() {
            return null;
        }
    
        public void setRepository(ArtifactRepository remoteRepository) {
            // intentionally blank
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  2. api/maven-api-settings/src/main/mdo/settings.mdo

              </description>
              <type>boolean</type>
              <defaultValue>false</defaultValue>
            </field>
            <field xdoc.separator="blank">
              <name>proxies</name>
              <version>1.0.0+</version>
              <description>
                Configuration for different proxy profiles. Multiple proxy profiles
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  3. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <description>The base version (i.e. ending in {@code -SNAPSHOT}) when this directory represents a "groupId/artifactId/version" for a SNAPSHOT.</description>
            </field>
            <field xdoc.separator="blank">
              <name>plugins</name>
              <version>1.0.0+</version>
              <description>The set of plugins when this directory represents a "groupId".</description>
              <association>
                <type>Plugin</type>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 11 14:06:34 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  4. maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java

        public static String key(String groupId, String artifactId, String version) {
            notBlank(groupId, "groupId can neither be null, empty nor blank");
            notBlank(artifactId, "artifactId can neither be null, empty nor blank");
            notBlank(version, "version can neither be null, empty nor blank");
    
            return groupId + ":" + artifactId + ":" + version;
        }
    
        private static void notBlank(String str, String message) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 06 08:51:18 GMT 2023
    - 6.9K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

            <!-- Parent Model                                                           -->
            <!-- ====================================================================== -->
    
            <field xdoc.separator="blank">
              <name>parent</name>
              <version>4.0.0+</version>
              <description>The location of the parent project, if one exists. Values from the parent
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  6. api/maven-api-plugin/src/main/mdo/plugin.mdo

            </field>
            <field xdoc.separator="blank">
              <name>mojos</name>
              <version>1.0.0+</version>
              <association>
                <type>MojoDescriptor</type>
                <multiplicity>*</multiplicity>
              </association>
              <description>Description of each Mojo provided by the plugin.</description>
            </field>
            <field xdoc.separator="blank">
              <name>dependencies</name>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
Back to top