Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for what (0.21 sec)

  1. api/pom.xml

        <version>4.0.0-beta-1-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-api</artifactId>
      <packaging>pom</packaging>
      <name>Maven 4 API</name>
      <description>A new immutable API for Maven 4 to better manage what plugins and extensions can influence.</description>
    
      <modules>
        <module>maven-api-meta</module>
        <module>maven-api-di</module>
        <module>maven-api-xml</module>
        <module>maven-api-model</module>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  2. android/pom.xml

                tests themselves and not the code being tested that needs that access, though there's no
                obvious way to ensure that.
    
                We could consider arranging things so that only the tests we know need this would get
                the add-opens. Right now that doesn't seem worth the effort, though.
            -->
            <test.add.opens>
    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)
  3. maven-core/src/test/resources-project-builder/unique-repo-id/plugin-repo/pom.xml

      <groupId>org.apache.maven.its.mng4193</groupId>
      <artifactId>test</artifactId>
      <version>0.1</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-4193</name>
      <description>
        Test that multiple plugin repository declarations with the same id cause a validation error.
      </description>
    
      <pluginRepositories>
        <pluginRepository>
          <id>one</id>
          <url>https://repo1.maven.org/maven2</url>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.4K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/w-merge/pom.xml

        <artifactId>parent</artifactId>
        <version>0.1</version>
      </parent>
    
      <artifactId>child-1</artifactId>
    
      <name>Maven Integration Test :: MNG-4129 :: Child-1</name>
      <description>
        Verify that plugin executions defined in the parent with inherited=false are not executed in child modules.
      </description>
    
      <build>
        <plugins>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/merged-plugin-class-path-order/w-plugin-mgmt/sub/pom.xml

        <artifactId>parent</artifactId>
        <version>0.1</version>
      </parent>
    
      <artifactId>child</artifactId>
    
      <name>Maven Integration Test :: MNG-3906</name>
      <description>
        Test that project-level plugin dependencies are properly merged during inheritance.
      </description>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/nested-build-dir-interpolation/pom.xml

      <groupId>org.apache.maven.its.mng3904</groupId>
      <artifactId>test</artifactId>
      <version>0.1</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-3904</name>
      <description>
        Test that properties which refer to build directories which in turn refer to other build directories are
        properly interpolated.
      </description>
    
      <properties>
        <!-- These are the properties of interest -->
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-exec-config-order/wo-plugin-mgmt/pom.xml

      <groupId>org.apache.maven.its.mng3827</groupId>
      <artifactId>test1</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-3864</name>
      <description>
        Verify that plain per-execution plugin configuration works correctly.
      </description>
    
      <build>
        <!-- This project does not use plugin management for the test plugin -->
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/sub/pom.xml

        <artifactId>parent</artifactId>
        <version>0.1</version>
      </parent>
    
      <artifactId>child</artifactId>
    
      <name>Maven Integration Test :: MNG-3925</name>
      <description>
        Test that plugin executions (in the same phase) are properly ordered after inheritance/merge with
        parent executions.
      </description>
    
      <build>
        <plugins>
          <plugin>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml

        <artifactId>parent</artifactId>
        <version>0.1</version>
      </parent>
    
      <artifactId>child</artifactId>
    
      <name>Maven Integration Test :: MNG-3899</name>
      <description>
        Test that build extensions are properly merged during inheritance.
      </description>
    
      <build>
        <!-- project extensions should precede inherited extensions -->
        <extensions>
          <extension>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/plugin-config-merging/pom.xml

      <artifactId>parent</artifactId>
      <version>1.0-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <name>Maven Integration Test :: MNG-3836</name>
      <description>
        Verify that children can *override* inherited plugin configuration.
      </description>
    
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <groupId>org.apache.maven.its.plugins</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
Back to top