Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for reference (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/exception/ExceptionSummary.java

        private String message;
    
        private String reference;
    
        private List<ExceptionSummary> children;
    
        public ExceptionSummary(Throwable exception, String message, String reference) {
            this(exception, message, reference, null);
        }
    
        public ExceptionSummary(Throwable exception, String message, String reference, List<ExceptionSummary> children) {
            this.exception = exception;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

         */
        private void fixTimestamp(File metadataFile, Metadata metadata, Metadata reference) {
            boolean changed = false;
    
            if (metadata != null && reference != null) {
                Versioning versioning = metadata.getVersioning();
                Versioning versioningRef = reference.getVersioning();
                if (versioning != null && versioningRef != null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  3. maven-core/src/site/site.xml

          <item name="Javadocs" href="apidocs/index.html"/>
          <item name="Source Xref" href="xref/index.html"/>
          <!--item name="FAQ" href="faq.html"/-->
        </menu>
    
        <menu name="Reference">
          <item name="Core Extensions" href="core-extensions.html"/>
          <item name="Extension Descriptor" href="extension.html"/>
        </menu>
      </body>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/pom.xml

              <artifactId>maven-it-plugin-a</artifactId>
              <version>2.1-SNAPSHOT</version>
              <executions>
                <execution>
                  <!-- NOTE: Implicitly reference "default" id here, i.e. omit the <id> element -->
                  <phase>parent-default</phase>
                </execution>
                <execution>
                  <id>non-default</id>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/pom.xml

            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-a</artifactId>
            <version>2.1-SNAPSHOT</version>
            <executions>
              <execution>
                <!-- NOTE: Implicitly reference "default" id here, i.e. omit the <id> element -->
                <phase>parent-default</phase>
              </execution>
              <execution>
                <id>non-default</id>
                <phase>parent-non-default</phase>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultLegacySupport.java

        public void setSession(MavenSession session) {
            AtomicReference<MavenSession> reference = DefaultLegacySupport.SESSION.get();
            if (reference != null) {
                reference.set(null);
            }
    
            if (session == null && reference != null) {
                DefaultLegacySupport.SESSION.remove();
            } else {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/MavenProjectHelper.java

         * @param project project reference.
         * @param artifactType artifact type.
         * @param artifactFile artifact file.
         */
        void attachArtifact(MavenProject project, String artifactType, File artifactFile);
    
        /**
         * Add or replace an artifact to the current project.
         * @param project the project reference.
         * @param artifactType the type (e.g. jar) or null.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.8K bytes
    - Viewed (0)
  8. maven-core/src/test/projects/default-maven/cyclic-reference/module-a/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>cyclic-reference</groupId>
        <artifactId>parent</artifactId>
        <version>1.0-SNAPSHOT</version>
      </parent>
      <artifactId>module-a</artifactId>
    
      <dependencies>
        <dependency>
          <groupId>cyclic-reference</groupId>
          <artifactId>module-b</artifactId>
          <version>1.0-SNAPSHOT</version>
        </dependency>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Nov 07 15:16:39 GMT 2019
    - 619 bytes
    - Viewed (0)
  9. maven-core/src/site/apt/core-extensions.apt.vm

    ~~ KIND, either express or implied.  See the License for the
    ~~ specific language governing permissions and limitations
    ~~ under the License.
    
     ---
     Maven Core Extensions Reference
     ---
     Hervé Boutemy
     ---
     2016-06-25
     ---
    
    Maven Core Extensions Reference
    
      Maven core provides default {{{./extension.html}extensions}} as defined in <<</META-INF/maven/extension.xml>>>:
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 05 09:04:35 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  10. maven-core/src/site/apt/artifact-handlers.apt

    ~~ KIND, either express or implied.  See the License for the
    ~~ specific language governing permissions and limitations
    ~~ under the License.
    
     ---
     Legacy Artifact Handlers Reference
     ---
     Hervé Boutemy
     ---
     2013-08-02
     ---
    
    Legacy Artifact Handlers Reference
    
      Maven 3 artifact handlers (see {{{../maven-artifact/apidocs/org/apache/maven/artifact/handler/ArtifactHandler.html} API}})
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 06:12:44 GMT 2024
    - 4.6K bytes
    - Viewed (0)
Back to top