Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Deprecated (0.36 sec)

  1. api/maven-api-plugin/src/main/mdo/plugin.mdo

            </field>
            <field>
              <name>deprecated</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>
                Description with the reason of Mojo deprecation. Similar to Javadoc {@code @deprecated}
                This will trigger a warning when a user tries to use a Mojo marked as deprecated.
              </description>
            </field>
            <field>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  2. maven-compat/pom.xml

        <groupId>org.apache.maven</groupId>
        <artifactId>maven</artifactId>
        <version>4.0.0-beta-1-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-compat</artifactId>
    
      <name>Maven Compat (deprecated)</name>
      <description>Deprecated Maven2 classes maintained as compatibility layer.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-model</artifactId>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  3. maven-compat/src/main/mdo/paramdoc.mdo

              </association>
            </field>
            <field>
              <version>1.0.0</version>
              <name>deprecation</name>
              <description>A preferred alternative to this expression, in the case where it's deprecated.</description>
              <type>String</type>
            </field>
            <field>
              <version>1.0.0</version>
              <name>ban</name>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Aug 21 15:04:07 GMT 2009
    - 5.4K bytes
    - Viewed (0)
  4. maven-core/pom.xml

        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-toolchain-model</artifactId>
        </dependency>
        <!-- Used for Javadoc in a deprecated class only -->
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-toolchain-builder</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  5. .idea/inspectionProfiles/Gradle.xml

          <replaceConfiguration name="Treat some Guava Collection factory methods as Deprecated" uuid="82f9f9ab-9c3b-367f-99ad-40841dc13819" description="Many no-argument Guava Collection factory methods are marked in their javadoc &quot;Should be treated as deprecated&quot;.  These should not be used." suppressId="guava-collection-factory" problemDescriptor="Treat some Guava Collection factory methods as Deprecated" text="com.google.common.collect.Lists.newArrayList()" recursive="false" caseInsensitive="false"...
    XML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 11 13:39:08 GMT 2024
    - 13K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

         *         project (e.g. describes the metadata of some artifact from the repository).
         */
        @Deprecated
        public java.io.File getPomFile() {
            return (getDelegate().getPomFile() != null) ? getDelegate().getPomFile().toFile() : null;
        }
    
        @Deprecated
        public void setPomFile(java.io.File pomFile) {
            update( getDelegate().withPomFile(pomFile != null ? pomFile.toPath() : null));
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  7. .idea/inspectionProfiles/idea_default.xml

              <value>
                <option name="ACCESS_JAVADOC_REQUIRED_FOR" value="none" />
                <option name="REQUIRED_TAGS" value="" />
              </value>
            </option>
            <option name="IGNORE_DEPRECATED" value="false" />
            <option name="IGNORE_JAVADOC_PERIOD" value="true" />
            <option name="IGNORE_DUPLICATED_THROWS" value="false" />
            <option name="IGNORE_POINT_TO_ITSELF" value="false" />
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Nov 09 20:59:03 GMT 2023
    - 32.4K bytes
    - Viewed (0)
  8. maven-compat/src/main/mdo/profiles.mdo

      xml.namespace="http://maven.apache.org/PROFILES/${version}"
      xml.schemaLocation="http://maven.apache.org/xsd/profiles-${version}.xsd">
      <id>profiles</id>
      <name>Profiles</name>
      <description><![CDATA[
        <b>Deprecated in Maven 2</b> Project-local overrides to the build process based on detected or user-provided environmental parameters.
        This is the model specification for <code>${basedir}/profiles.xml</code>.
      ]]></description>
      <defaults>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Jan 03 21:08:35 GMT 2023
    - 13.8K bytes
    - Viewed (0)
  9. android/pom.xml

        <profile>
          <id>javac-for-jvm18plus</id>
          <activation>
            <!--
                In order to build and run the tests against JDK 18+, we need to pass java.security.manager=allow, to make
                the deprecated 'java.lang.SecurityManager' available for use.
             -->
            <jdk>[18,]</jdk>
          </activation>
          <properties>
            <test.add.args>-Djava.security.manager=allow</test.add.args>
          </properties>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Mar 12 20:26:18 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  10. api/maven-api-settings/src/main/mdo/settings.mdo

                    if (serverId.equals(server.getId())) {
                        match = server;
                        break;
                    }
                }
            }
            return match;
        }
    
        @Deprecated
        public Mirror getMirrorOf(String repositoryId) {
            Mirror match = null;
            java.util.List<Mirror> mirrors = getMirrors();
            if (mirrors != null && repositoryId != null) {
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
Back to top