Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for we (0.14 sec)

  1. maven-core/src/test/resources-project-builder/baseuri-interpolation/pom.xml

      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-3760</name>
      <description>
        Test interpolation of ${project.baseUri}
      </description>
    
      <properties>
        <!-- this is where we collect all the interpolated values for the POM dump -->
        <prop1>${project.baseUri}</prop1>
      </properties>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.2K bytes
    - Viewed (0)
  2. guava/pom.xml

                <!-- Even after we stop using JSR305 annotations in our own code, we'll want this link so that NullPointerTester's docs can link to @CheckForNull and friends... at least once we start using this config for guava-testlib. -->
                <offlineLink>
    XML
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Mar 11 16:37:45 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  3. guava-gwt/pom.xml

                of those modules are ones that it uses but forgets to list in its own <inherits>, we'd
                like to get an error. Currently we do, but if we add the extra <inherits> lines, we
                won't.
    
                I have one idea for a better approach, but it's painful, and I haven't tested it: We
                could postprocess Collect.gwt.xml to add <skip> lines for all the files that should be
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 11 15:00:55 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/profile-properties-interpolation/pom.xml

      <name>Maven Integration Test :: MNG-3900</name>
      <description>
        Test that build properties defined via active profiles are used for
        interpolation.
      </description>
    
      <!--
        These are some POM elements we would like to interpolate with
        properties from the profile.
      -->
      <url>https://maven.apache.org/${test}
      </url>
      <properties>
        <test>FAILED</test>
        <property>${test}</property>
      </properties>
    
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:50:27 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/basedir-aligned-interpolation/pom.xml

      <name>Maven Integration Test :: MNG-3822</name>
      <description>
        Verify that POM interpolation uses basedir-aligned build directories.
      </description>
    
      <properties>
        <!-- this is where we collect all the interpolated values for the POM dump -->
        <buildMainSrc>${project.build.sourceDirectory}</buildMainSrc>
        <buildTestSrc>${project.build.testSourceDirectory}</buildTestSrc>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.2K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/boolean-interpolation/pom.xml

          <releases>
            <!-- That's the boolean POM field we would like to interpolate -->
            <enabled>${releasesEnabled}</enabled>
          </releases>
        </repository>
      </repositories>
    
      <build>
        <resources>
          <resource>
            <directory>src/main/resources</directory>
            <!-- That's the boolean POM field we would like to interpolate -->
            <filtering>${filter.resources}</filtering>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.5K bytes
    - Viewed (0)
  7. android/guava-testlib/pom.xml

          <groupId>com.google.truth</groupId>
          <artifactId>truth</artifactId>
          <version>${truth.version}</version>
          <scope>test</scope>
          <exclusions>
            <exclusion>
              <!-- use the guava we're building. -->
              <groupId>com.google.guava</groupId>
              <artifactId>guava</artifactId>
            </exclusion>
          </exclusions>
        </dependency>
      </dependencies>
      <build>
        <plugins>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jul 31 18:55:22 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  8. guava-testlib/pom.xml

          <groupId>com.google.truth</groupId>
          <artifactId>truth</artifactId>
          <version>${truth.version}</version>
          <scope>test</scope>
          <exclusions>
            <exclusion>
              <!-- use the guava we're building. -->
              <groupId>com.google.guava</groupId>
              <artifactId>guava</artifactId>
            </exclusion>
          </exclusions>
        </dependency>
      </dependencies>
      <build>
        <plugins>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jul 31 18:55:22 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  9. android/pom.xml

                       If we're building with JDK8, then clearly we're sticking to
                       JDK8 APIs. However, I assume (but did not confirm) that we'd
                       have the same issue with our -android builds, which need
                       animal-sniffer so that they can check that we're sticking to
                       JDK6-like APIs.
    
                       So instead, we use javac9, which doesn't lead to this error.
    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)
  10. android/guava/pom.xml

                <!-- Even after we stop using JSR305 annotations in our own code, we'll want this link so that NullPointerTester's docs can link to @CheckForNull and friends... at least once we start using this config for guava-testlib. -->
                <offlineLink>
    XML
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Mar 11 16:37:45 GMT 2024
    - 8.9K bytes
    - Viewed (0)
Back to top