Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for check (0.06 sec)

  1. maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/pom.xml

      <modules>
        <module>child</module>
      </modules>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <!-- this checks handling of a plugin which is implicitly bound to the lifecycle -->
              <groupId>org.apache.maven.plugins</groupId>
              <artifactId>maven-resources-plugin</artifactId>
              <version>0.1-stub-SNAPSHOT</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml

        Test that POM parsing properly coalesces text data.
      </description>
    
      <properties>
        <!--
        This checks the coalescing of CHARACTERS and CDATA events. Note that inner whitespace must be retained.
        -->
        <prop0>A <![CDATA[ Test ]]> Project<![CDATA[ ]]>Property</prop0>
    
        <!--
        This checks the coalescing of CHARACTERS events that are interleaved with comments. Note that inner whitespace
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 34.5K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-pmd-plugin</artifactId>
                <executions>
                  <execution>
                    <goals>
                      <goal>cpd-check</goal>
                    </goals>
                  </execution>
                </executions>
              </plugin>
            </plugins>
          </build>
        </profile>
        <profile>
          <id>reporting</id>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 14.8K bytes
    - Viewed (0)
  4. build/checkstyle-suppressions.xml

    <!DOCTYPE suppressions PUBLIC
            "-//Checkstyle//DTD SuppressionFilter Configuration 1.0//EN"
            "https://checkstyle.org/dtds/suppressions_1_0.dtd">
    
    <suppressions>
        <suppress checks="JavadocVariable|JavadocMethod" files=".*" />
        <suppress checks="HiddenField" files=".*" />
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  5. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

         */
        public int hashCode() {
            return java.util.Objects.hash(getType(), getProvides());
        } //-- int hashCode()
    
        /**
         * Checks equality based on {@link #getType()} and {@link #getProvides()} values.
         */
        public boolean equals(Object other) {
            if (this == other) {
                return true;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top