Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 163 for jre6 (0.22 sec)

  1. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

    +--- org.codehaus.groovy:groovy-json:3.0.5
    |    \--- org.codehaus.groovy:groovy:3.0.5
    +--- org.codehaus.groovy:groovy-nio:3.0.5
    |    \--- org.codehaus.groovy:groovy:3.0.5
    \--- com.google.guava:guava:29.0-jre
         +--- com.google.guava:failureaccess:1.0.1
         +--- com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava
         +--- com.google.code.findbugs:jsr305:3.0.2
         +--- org.checkerframework:checker-qual:2.11.1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/test-suite-configure-suite-dependencies-project/groovy/build.gradle

    }
    
    version = '1.0.2'
    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    // tag::configure-suite-dependencies-project[]
    dependencies {
        api 'com.google.guava:guava:30.1.1-jre' // <1>
        implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.3' // <2>
    }
    
    testing {
        suites {
            integrationTest(JvmTestSuite) {
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

            when:
            classpath.load(customClasspathReader)
    
            then:
            classpath.entries == customEntries
        }
    
        def "configure overwrites output location, dependencies and jre container and appends all other entries"() {
            when:
            classpath.load(customClasspathReader)
            def newEntries = [createSomeLibrary()] + projectDependency + jreContainer + outputLocation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. guava-bom/pom.xml

      <modelVersion>4.0.0</modelVersion>
    
      <groupId>com.google.guava</groupId>
      <artifactId>guava-bom</artifactId>
      <version>HEAD-jre-SNAPSHOT</version>
      <packaging>pom</packaging>
      
      <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>9</version>
        <relativePath></relativePath>
      </parent>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 10 15:48:57 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  5. android/pom.xml

        <variant.jvmEnvironmentVariantName>android</variant.jvmEnvironmentVariantName>
        <otherVariant.version>HEAD-jre-SNAPSHOT</otherVariant.version>
        <otherVariant.jvmEnvironment>standard-jvm</otherVariant.jvmEnvironment>
        <otherVariant.jvmEnvironmentVariantName>jre</otherVariant.jvmEnvironmentVariantName>
      </properties>
      <issueManagement>
        <system>GitHub Issues</system>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. maven-core/src/test/projects/project-builder/it0063/pom.xml

      <dependencies>
        <dependency>
          <groupId>com.sun</groupId>
          <artifactId>tools</artifactId>
          <version>1.4.2</version>
          <scope>system</scope>
          <systemPath>${jre.home}/../lib/tools.jar</systemPath>
        </dependency>
      </dependencies>
    
      <build>
        <plugins>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 1.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/groovy/build.gradle

            def variantVersion = context.details.id.version
            def version = variantVersion.substring(0, variantVersion.indexOf("-"))
            ["compile", "runtime"].each { base ->
                [6: "android", 8: "jre"].each { targetJvmVersion, jarName ->
                    context.details.addVariant("jdk$targetJvmVersion${base.capitalize()}", base) {
                        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  8. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/DockerPluginSmokeTest.groovy

                }
    
                application.mainClass = 'org.gradle.JettyMain'
    
                docker {
                    javaApplication {
                        baseImage = 'dockerfile/java:openjdk-7-jre'
                        ports = [9090]
                        images = ['jettyapp:1.115']
                    }
                }
                """.stripIndent()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. .teamcity/mvnw

          export JAVA_HOME
        fi
      fi
    fi
    
    if [ -z "$JAVACMD" ] ; then
      if [ -n "$JAVA_HOME"  ] ; then
        if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
          # IBM's JDK on AIX uses strange locations for the executables
          JAVACMD="$JAVA_HOME/jre/sh/java"
        else
          JAVACMD="$JAVA_HOME/bin/java"
        fi
      else
        JAVACMD="`which java`"
      fi
    fi
    
    if [ ! -x "$JAVACMD" ] ; then
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 9.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JavaInfo.java

         *
         * @return the java home location
         */
        File getJavaHome();
    
        /**
         * Returns the tools jar. May return null, for example when Jvm was created via
         * with custom jre location or if jdk is not installed.
         */
        @Nullable
        File getToolsJar();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top