Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 312 for ccompile (0.27 sec)

  1. compat/maven-compat/src/test/resources/projects/scope/transitive-compile-dep.xml

        </dependency>
    
        <dependency>
          <groupId>maven-test-compile</groupId>
          <artifactId>scope-runtime</artifactId>
          <version>1.0</version>
          <scope>runtime</scope>
        </dependency>
    
        <dependency>
          <groupId>maven-test-compile</groupId>
          <artifactId>scope-compile</artifactId>
          <version>1.0</version>
          <scope>compile</scope>
        </dependency>
      </dependencies>
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. compat/maven-compat/src/test/resources/pom.xml

          <groupId>plexus</groupId>
          <artifactId>plexus-compiler-api</artifactId>
          <version>1.0</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
          <groupId>plexus</groupId>
          <artifactId>plexus-compiler-javac</artifactId>
          <version>1.0</version>
          <type>jar</type>
          <scope>compile</scope>
        </dependency>
        <dependency>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. buildscripts/cross-compile.sh

    Daniel Jakots <******@****.***> 1702948102 -0500
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Dec 19 01:08:22 UTC 2023
    - 958 bytes
    - Viewed (0)
  4. compat/maven-compat/src/test/resources/inheritance-repo/t12/p0/pom.xml

          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <executions>
              <execution>
                <id>test</id>
    
                <!--  The key to this test... -->
                <inherited>false</inherited>
    
                <goals>
                  <goal>compile</goal>
                </goals>
                <phase>install</phase>
              </execution>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 672 bytes
    - Viewed (0)
  5. compat/maven-compat/src/test/resources/inheritance-repo/t12/p0/p1/pom.xml

      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <executions>
              <execution>
                <id>normal</id>
    
                <goals>
                  <goal>compile</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 610 bytes
    - Viewed (0)
  6. impl/maven-core/lifecycle-executor.txt

            <compile>org.apache.maven.plugins:maven-compiler-plugin:compile</compile>
            <process-test-resources>org.apache.maven.plugins:maven-resources-plugin:testResources</process-test-resources>
            <test-compile>org.apache.maven.plugins:maven-compiler-plugin:testCompile</test-compile>
            <test>org.apache.maven.plugins:maven-surefire-plugin:test</test>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Platform.java

        logger.log(Level.WARNING, "Error loading regex compiler, falling back to next option", e);
      }
    
      private static final class JdkPatternCompiler implements PatternCompiler {
        @Override
        public CommonPattern compile(String pattern) {
          return new JdkPattern(Pattern.compile(pattern));
        }
    
        @Override
        public boolean isPcreLike() {
          return true;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. compat/maven-compat/src/test/resources/inheritance-repo/t02/p0/p1/pom.xml

      <scm>
        <url>scm-url</url>
      </scm>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <executions>
              <execution>
                <id>test</id>
                <phase>package</phase>
                <goals>
                  <goal>compile</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. android/guava-testlib/pom.xml

          <version>${project.version}</version>
        </dependency>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <!-- *not* <scope>test</scope>; <scope>compile</scope> is right so that guava-testlib users get junit transitively. -->
          <version>4.13.2</version>
        </dependency>
        <dependency>
          <!--
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 18:53:31 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. guava-testlib/pom.xml

          <version>${project.version}</version>
        </dependency>
        <dependency>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <!-- *not* <scope>test</scope>; <scope>compile</scope> is right so that guava-testlib users get junit transitively. -->
          <version>4.13.2</version>
        </dependency>
        <dependency>
          <!--
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 24 18:53:31 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top