Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for notes (0.14 sec)

  1. pom.xml

    							<licenseFamilyCategory>LGPL</licenseFamilyCategory>
    							<licenseFamilyName>GNU Lesser General Public License</licenseFamilyName>
    							<notes />
    							<patterns>
    								<pattern>This library is free software; you can redistribute it</pattern>
    								<pattern>GNU Lesser General Public License</pattern>
    							</patterns>
    						</license>
    					</licenses>
    XML
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 04 13:19:42 GMT 2024
    - 9.3K bytes
    - Viewed (1)
  2. maven-core/src/test/resources-project-builder/plugin-exec-w-and-wo-id/w-plugin-mgmt/pom.xml

      <version>0.1</version>
    
      <name>Maven Integration Test :: MNG-4000</name>
      <description>
        Test that plugin executions without id are not lost among other plugin executions.
      </description>
    
      <build>
        <!-- NOTE: This test uses plugin management for the IT plugin. -->
        <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.2K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/subproject/pom.xml

                <!-- NOTE: These values are deliberately not in alpha order! -->
                <stringParam>CHILD-1</stringParam>
                <stringParam>CHILD-3</stringParam>
                <stringParam>CHILD-2</stringParam>
                <stringParam>CHILD-4</stringParam>
              </stringParams>
              <listParam combine.children="append">
                <!-- NOTE: These values are deliberately not in alpha order! -->
    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)
  4. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/pom.xml

              <artifactId>maven-it-plugin-configuration</artifactId>
              <version>2.1-SNAPSHOT</version>
              <inherited>true</inherited>
              <configuration>
                <listParam>
                  <!-- NOTE: These values are deliberately not in alpha order! -->
                  <listParam>PARENT-1</listParam>
                  <listParam>PARENT-3</listParam>
                  <listParam>PARENT-2</listParam>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/pom-encoding/utf-8/pom.xml

    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <!--
    NOTE: This POM's XML declaration specified no encoding which should therefore default to UTF-8.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng2254</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/url-inheritance/sub/pom.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <!-- NOTE: The base directory name of this project deliberately does not match its artifact id! -->
    
      <parent>
        <groupId>org.apache.maven.its.mng3846</groupId>
        <artifactId>parent</artifactId>
        <version>0.1</version>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.1K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/pom-encoding/latin-1/pom.xml

    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <!--
    NOTE: This POM's XML declaration intentionally declares Latin-1 encoding.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>org.apache.maven.its.mng2254</groupId>
      <artifactId>latin-1</artifactId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-exec-inheritance/w-merge/pom.xml

      <description>
        Verify that plugin executions defined in the parent with inherited=false are not executed in child modules.
      </description>
    
      <build>
        <plugins>
          <!-- NOTE: It's essential part of this test variant to redefine the test plugin again, i.e. trigger plugin merging -->
          <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
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/sub/pom.xml

                <id>child-2</id>
                <phase>validate</phase>
                <goals>
                  <goal>child-2</goal>
                </goals>
              </execution>
              <execution>
                <!-- NOTE: <id> deliberately omitted to use default value -->
                <phase>validate</phase>
                <goals>
                  <goal>child-default</goal>
                </goals>
              </execution>
            </executions>
    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)
  10. maven-core/src/test/resources-project-builder/dependency-order/w-plugin-mgmt/pom.xml

        </dependency>
        <dependency>
          <groupId>org.apache.maven.its.mng4003</groupId>
          <artifactId>d</artifactId>
          <version>1</version>
        </dependency>
      </dependencies>
    
      <build>
        <!-- NOTE: The combination with a plugin management section is an essential part of the test -->
        <pluginManagement>
          <plugins>
            <plugin>
              <artifactId>maven-clean-plugin</artifactId>
    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)
Back to top