Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for esse (0.15 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

          <organization>ASF</organization>
          <roles>
            <role>PMC Member</role>
          </roles>
          <timezone>-5</timezone>
        </developer>
        <developer>
          <id>jmcconnell</id>
          <name>Jesse McConnell</name>
          <email>******@****.***</email>
          <organization>ASF</organization>
          <roles>
            <role>PMC Member</role>
          </roles>
          <timezone>-6</timezone>
        </developer>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

        /**
         * @see java.lang.Object#equals(java.lang.Object)
         */
        public boolean equals(Object o) {
            if (this == o) {
                return true;
            } else if (!(o instanceof Extension)) {
                return false;
            } else {
                Extension e = (Extension) o;
                return java.util.Objects.equals(e.getArtifactId(), getArtifactId())
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. maven-xml-impl/pom.xml

          <artifactId>plexus-xml</artifactId>
          <version>${plexusXmlVersion}</version>
          <scope>provided</scope>
          <exclusions>
            <!-- we need the exclusion to be able to release, else we have a cycle -->
            <exclusion>
              <groupId>org.apache.maven</groupId>
              <artifactId>maven-xml-impl</artifactId>
            </exclusion>
          </exclusions>
        </dependency>
    
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. maven-core/pom.xml

                  <!-- was only a workaround for Plexus Container, hopefully never used by anyone else -->
                  <exclude>org.apache.maven.plugin.DefaultBuildPluginManager#setMojoExecutionListeners(java.util.List)</exclude>
                  <!-- could have never been used due to usage of non-export class (CoreExportsProvider) -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. api/maven-api-settings/src/main/mdo/settings.mdo

            } else if (!(USER_LEVEL.equals(sourceLevel) || PROJECT_LEVEL.equals(sourceLevel)  || GLOBAL_LEVEL.equals(sourceLevel))) {
                throw new IllegalArgumentException("sourceLevel must be one of: {" + USER_LEVEL + "," + PROJECT_LEVEL + "," + GLOBAL_LEVEL + "}");
            } else {
                this.sourceLevel = sourceLevel;
                this.sourceLevelSet = true;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

                } else if (!(USER_LEVEL.equals(sourceLevel) || GLOBAL_LEVEL.equals(sourceLevel))) {
                    throw new IllegalArgumentException("sourceLevel must be one of: {" + USER_LEVEL + "," + GLOBAL_LEVEL + "}");
                } else {
                    this.sourceLevel = sourceLevel;
                    this.sourceLevelSet = 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