Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for properties (0.29 sec)

  1. maven-core/src/test/resources-project-builder/nested-build-dir-interpolation/pom.xml

      <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 -->
        <dir0>${project.build.outputDirectory}/dir0</dir0>
        <dir1>${project.build.testSourceDirectory}/dir1</dir1>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/complete-model/w-parent/sub/pom.xml

          <organizationUrl>https://devel.org</organizationUrl>
          <roles>
            <role>devel</role>
          </roles>
          <timezone>-1</timezone>
          <properties>
            <developer>yes</developer>
          </properties>
        </developer>
      </developers>
      <contributors>
        <contributor>
          <name>project-contributor</name>
          <email>contributor@</email>
          <url>https://contributor</url>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 8.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/project-dynamism/pom.xml

      <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>
        </filters>
    
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 1.1K bytes
    - Viewed (0)
  4. maven-core/src/test/projects/plugin-manager/project-with-build-extensions-plugin/pom.xml

            <executions>
              <execution>
                <id>load</id>
                <phase>validate</phase>
                <configuration>
                  <resourcePaths>maven-core-it.properties</resourcePaths>
                  <pluginClassLoaderOutput>target/pcl.properties</pluginClassLoaderOutput>
                </configuration>
                <goals>
                  <goal>load</goal>
                </goals>
              </execution>
            </executions>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Dec 26 18:27:51 GMT 2014
    - 884 bytes
    - Viewed (0)
  5. pom.xml

    						<networkaddress.cache.negative.ttl>-1</networkaddress.cache.negative.ttl>
    					</systemPropertyVariables>
    					<properties>
    						<property>
    							<name>listener</name>
    							<value>jcifs.tests.PrintingRunListener</value>
    						</property>
    					</properties>
    					<useSystemClassLoader>false</useSystemClassLoader>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.jacoco</groupId>
    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)
  6. maven-core/src/test/resources-project-builder/build-extension-inheritance/sub/pom.xml

              <execution>
                <phase>validate</phase>
                <goals>
                  <goal>eval</goal>
                </goals>
                <configuration>
                  <outputFile>target/extension.properties</outputFile>
                  <expressions>
                    <expression>project/build/extensions</expression>
                  </expressions>
                </configuration>
              </execution>
            </executions>
    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)
  7. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/subproject/pom.xml

            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-configuration</artifactId>
            <version>2.1-SNAPSHOT</version>
            <configuration>
              <propertiesFile>target/config.properties</propertiesFile>
              <stringParams combine.children="append">
                <!-- NOTE: These values are deliberately not in alpha order! -->
                <stringParam>CHILD-1</stringParam>
    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)
  8. maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/sub/pom.xml

        Test that during inheritance the merging/joining of subtrees with equal identifier doesn't crash if the parent
        POM has a non-empty element and the child POM has an empty element to join.
      </description>
    
      <properties/>
    
      <repositories>
        <repository>
          <id>equal-repo-id</id>
          <url>file:///${basedir}/null</url>
          <snapshots/>
          <releases/>
        </repository>
      </repositories>
    
      <build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.3K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/profile-injection-order/pom.xml

        <profile>
          <id>pom-a</id>
          <properties>
            <pomProperty>a</pomProperty>
          </properties>
        </profile>
        <profile>
          <id>pom-b</id>
          <properties>
            <pomProperty>b</pomProperty>
          </properties>
        </profile>
        <profile>
          <id>pom-c</id>
          <properties>
            <pomProperty>c</pomProperty>
          </properties>
        </profile>
        <profile>
    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)
  10. maven-core/src/test/resources-project-builder/merged-filter-order/sub/pom.xml

      </description>
    
      <build>
        <filters>
          <filter>src/main/filters/child-a.properties</filter>
          <filter>src/main/filters/child-c.properties</filter>
          <filter>src/main/filters/child-b.properties</filter>
          <filter>src/main/filters/child-d.properties</filter>
        </filters>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
Back to top