Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for objenesis (0.28 sec)

  1. .github/renovate.json

      "ignoreDeps": [
        "com.squareup.okhttp3:okhttp",
        "com.squareup.okhttp3:okhttp-tls",
        "com.squareup.okhttp3:mockwebserver"
      ],
      "packageRules": [
        {
          "matchPackageNames": ["org.objenesis:objenesis"],
          "allowedVersions": "<=2.6"
        },
        {
          "matchPackageNames": ["org.eclipse.jetty:jetty-client"],
          "allowedVersions": "<10.0",
          "description": "JDK 11 requirement"
        },
        {
    Json
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Sat Feb 18 14:22:17 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  2. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val minlog = "com.esotericsoftware.minlog:minlog"
        val nativePlatform = "net.rubygrapefruit:native-platform"
        val nativePlatformFileEvents = "net.rubygrapefruit:file-events"
        val objenesis = "org.objenesis:objenesis"
        val plexusCipher = "org.sonatype.plexus:plexus-cipher"
        val plexusInterpolation = "org.codehaus.plexus:plexus-interpolation"
        val plexusSecDispatcher = "org.codehaus.plexus:plexus-sec-dispatcher"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.groovy-dsl-gradle-plugin.gradle.kts

        implementation("gradlebuild:gradle-plugin")
    
        implementation(localGroovy())
        testImplementation("org.spockframework:spock-core")
        testImplementation("net.bytebuddy:byte-buddy")
        testImplementation("org.objenesis:objenesis")
    }
    
    tasks.withType<GroovyCompile>().configureEach {
        groovyOptions.apply {
            encoding = "utf-8"
            forkOptions.jvmArgs?.add("-XX:+HeapDumpOnOutOfMemoryError")
        }
        options.apply {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Oct 03 15:32:00 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  4. build-logic-commons/build-platform/build.gradle.kts

                because("Maven Central and JCenter disagree on version 2.9.1 metadata")
            }
            api("net.bytebuddy:byte-buddy") { version { strictly("1.10.21") } }
            api("org.objenesis:objenesis") { version { strictly("3.1") } }
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  5. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

            testImplementation(libs.junit5Vintage)
            testImplementation(libs.spockJUnit4)
            testImplementation(libs.gradleEnterpriseTestAnnotation)
            testRuntimeOnly(libs.bytebuddy)
            testRuntimeOnly(libs.objenesis)
    
            // use a separate configuration for the platform dependency that does not get published as part of 'apiElements' or 'runtimeElements'
            val platformImplementation by configurations.creating
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 17 13:36:27 GMT 2024
    - 15.7K bytes
    - Viewed (0)
Back to top