Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Reference (0.34 sec)

  1. 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 21 03:35:09 GMT 2024
    - Last Modified: Thu Nov 07 15:16:39 GMT 2019
    - 619 bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-exec-merging/wo-plugin-mgmt/sub/pom.xml

            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-a</artifactId>
            <version>2.1-SNAPSHOT</version>
            <executions>
              <execution>
                <!-- NOTE: Explicitly reference "default" id here -->
                <id>default</id>
                <phase>child-default</phase>
              </execution>
              <execution>
                <id>non-default</id>
                <phase>child-non-default</phase>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/sub/pom.xml

            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-a</artifactId>
            <version>2.1-SNAPSHOT</version>
            <executions>
              <execution>
                <!-- NOTE: Explicitly reference "default" id here -->
                <id>default</id>
                <phase>child-default</phase>
              </execution>
              <execution>
                <id>non-default</id>
                <phase>child-non-default</phase>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  4. maven-core/src/test/projects/default-maven/cyclic-reference/pom.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>cyclic-reference</groupId>
      <artifactId>parent</artifactId>
      <version>1.0-SNAPSHOT</version>
      <packaging>pom</packaging>
    
      <modules>
        <module>module-a</module>
        <module>module-b</module>
      </modules>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Nov 07 15:16:39 GMT 2019
    - 478 bytes
    - Viewed (0)
  5. maven-core/src/test/projects/default-maven/cyclic-reference/module-b/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <parent>
        <groupId>cyclic-reference</groupId>
        <artifactId>parent</artifactId>
        <version>1.0-SNAPSHOT</version>
      </parent>
      <artifactId>module-b</artifactId>
    
      <dependencies>
        <dependency>
          <groupId>cyclic-reference</groupId>
          <artifactId>module-a</artifactId>
          <version>1.0-SNAPSHOT</version>
        </dependency>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Nov 07 15:16:39 GMT 2019
    - 619 bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-exec-order-with-lifecycle/pom.xml

            <artifactId>maven-it-plugin-log-file</artifactId>
            <version>2.1-SNAPSHOT</version>
          </plugin>
          <plugin>
            <!-- NOTE: It's essential that this plugin is also referenced by the default lifecycle bindings -->
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-resources-plugin</artifactId>
            <version>0.1-stub-SNAPSHOT</version>
          </plugin>
        </plugins>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-management-inheritance/pom.xml

      <name>Maven Integration Test :: it0052</name>
      <description>Test that source attachment doesn't take place when -DperformRelease=true is missing.</description>
    
      <!-- NOTE: Use stub versions of the core plugins referenced by the build -->
      <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <artifactId>maven-compiler-plugin</artifactId>
              <version>0.1-stub-SNAPSHOT</version>
            </plugin>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  8. 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 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  9. 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 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.9K bytes
    - Viewed (0)
  10. pom.xml

    				<artifactId>maven-jxr-plugin</artifactId>
    				<configuration>
    					<docTitle>&lt;a href="https://fess.codelibs.org/" target="_blank"&gt;Enterprise Search Server: Fess Reference&lt;/a&gt;</docTitle>
    					<windowTitle>Open Source Enterprise Search: Fess Source Code Reference</windowTitle>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>com.mycila</groupId>
    				<artifactId>license-maven-plugin</artifactId>
    			</plugin>
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Apr 14 04:03:33 GMT 2024
    - 48.7K bytes
    - Viewed (0)
Back to top