Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Beavers (0.25 sec)

  1. apache-maven/src/assembly/maven/conf/settings.xml

          <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
        </proxy>
        -->
      </proxies>
    
      <!-- servers
       | This is a list of authentication profiles, keyed by the server-id used within the system.
       | Authentication profiles can be used whenever maven must make a connection to a remote server.
       |-->
      <servers>
        <!-- server
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

              <name>distributionManagement</name>
              <version>4.0.0+</version>
              <description>Distribution information for a project that enables deployment of the site
                and artifacts to remote web servers and repositories respectively.</description>
              <association>
                <type>DistributionManagement</type>
              </association>
            </field>
            <field xdoc.separator="blank">
    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)
  3. api/maven-api-settings/src/main/mdo/settings.mdo

            }
            return activeProxy;
        }
    
        public Server getServer(String serverId) {
            Server match = null;
            java.util.List<Server> servers = getServers();
            if (servers != null && serverId != null) {
                for (Server server : servers) {
                    if (serverId.equals(server.getId())) {
                        match = server;
                        break;
                    }
                }
    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)
Back to top