Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 813 for BUILD (0.08 sec)

  1. maven-core/src/test/resources/project-dynamism/pom.xml

      <groupId>org.test</groupId>
      <artifactId>test-build-dynamism</artifactId>
      <version>1</version>
    
      <properties>
        <myProperty>${pom.build.directory}</myProperty>
      </properties>
    
      <build>
        <resources>
          <resource>
            <directory>${pom.build.directory}/generated-resources/plexus</directory>
          </resource>
        </resources>
    
        <filters>
          <filter>${pom.build.directory}/generated-filters.properties</filter>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

         * Returns the project model.
         */
        @Nonnull
        Model getModel();
    
        /**
         * Shorthand method.
         */
        @Nonnull
        default Build getBuild() {
            Build build = getModel().getBuild();
            return build != null ? build : Build.newInstance();
        }
    
        /**
         * Returns the path to the pom file for this project.
         * A project is usually read from a file named {@code pom.xml},
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/validation/duplicate-plugin-execution.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>aid</artifactId>
      <groupId>gid</groupId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>build</groupId>
              <artifactId>managed-plugin</artifactId>
              <executions>
                <execution>
                  <phase>test</phase>
                </execution>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 31 11:27:00 UTC 2010
    - 2.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector.java

                        .map(org.apache.maven.model.Plugin::getDelegate)
                        .collect(Collectors.toList());
                Model lifecycleModel = Model.newBuilder()
                        .build(Build.newBuilder().plugins(plugins).build())
                        .build();
                model.update(merger.merge(model.getDelegate(), lifecycleModel));
            }
        }
    
        /**
         *  The domain-specific model merger for lifecycle bindings
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeStaxBuilder.java

            return build(parser, DEFAULT_TRIM, locationBuilder);
        }
    
        public static XmlNodeImpl build(XMLStreamReader parser) throws XMLStreamException {
            return build(parser, DEFAULT_TRIM, null);
        }
    
        public static XmlNodeImpl build(XMLStreamReader parser, InputLocationBuilderStax locationBuilder)
                throws XMLStreamException {
            return build(parser, DEFAULT_TRIM, locationBuilder);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/project-dynamism/pom-interp.xml

             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.test</groupId>
      <artifactId>test-build-dynamism</artifactId>
      <version>1</version>
    
      <build>
        <sourceDirectory>/${project.groupId}/src/main/java</sourceDirectory>
        <testSourceDirectory>/${pom.groupId}/src/test/java</testSourceDirectory>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 903 bytes
    - Viewed (0)
  7. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeBuilder.java

         */
        public static XmlNodeImpl build(Reader reader, InputLocationBuilder locationBuilder)
                throws XmlPullParserException, IOException {
            return build(reader, DEFAULT_TRIM, locationBuilder);
        }
    
        public static XmlNodeImpl build(InputStream is, String encoding) throws XmlPullParserException, IOException {
            return build(is, encoding, DEFAULT_TRIM);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. maven-core/src/test/projects/plugin-manager/project-with-build-extensions-plugin/pom.xml

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.test</groupId>
      <artifactId>project-with-build-extensions-plugin</artifactId>
      <version>1.0</version>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin</artifactId>
            <version>0.1</version>
            <extensions>true</extensions>
            <executions>
              <execution>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 26 18:27:51 UTC 2014
    - 884 bytes
    - Viewed (0)
  9. .github/workflows/maven.yml

    # This workflow will build a Java project with Maven
    # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
    
    name: Java CI with Maven
    
    on:
      push:
        branches:
        - master
        - "*.x"
      pull_request:
        branches:
        - master
        - "*.x"
    
    jobs:
      build:
    
        runs-on: ubuntu-latest
    
        steps:
        - uses: actions/checkout@v2
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 602 bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-order/pom.xml

      <version>1.1.3-SNAPSHOT</version>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-component-metadata</artifactId>
          </plugin>
    
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.4.3</version>
           </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 01 10:59:19 UTC 2009
    - 676 bytes
    - Viewed (0)
Back to top