Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for cglib (0.04 sec)

  1. platforms/ide/tooling-api/build.gradle.kts

        crossVersionTestImplementation(libs.jettyWebApp)
        crossVersionTestImplementation(libs.commonsIo)
        crossVersionTestRuntimeOnly(libs.cglib) {
            because("BuildFinishedCrossVersionSpec classpath inference requires cglib enhancer")
        }
    
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":logging")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            context.details.allVariants {
                withDependencies {
                    filter { it.name == "cglib-nodep" }.forEach {
                        add("${it.group}:cglib:3.2.7")
                    }
                    removeAll { it.name == "cglib-nodep" }
                }
            }
        }
    }
    
    // https://youtrack.jetbrains.com/issue/IDEA-261387
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. gradle/dependency-management/capabilities.json

            "providedBy": [
                "asm:asm-util", "asm:asm-all", "asm:asm-debug-all"
            ],
            "selected": "org.ow2.asm:asm-util",
            "upgrade": "7.1"
        },
        {
            "name": "cglib",
            "providedBy": [
                "cglib:cglib-nodep"
            ],
            "selected": "cglib:cglib",
            "upgrade": "3.2.6"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts

            testFixturesImplementation(libs.junit)
            testFixturesImplementation(libs.groovy)
            testFixturesImplementation(libs.spock)
            testFixturesRuntimeOnly(libs.bytebuddy)
            testFixturesRuntimeOnly(libs.cglib)
        }
    }
    
    // Do not publish test fixture, we use them only internal for now
    val javaComponent = components["java"] as AdhocComponentWithVariants
    javaComponent.withVariantsFromConfiguration(testFixturesRuntimeElements) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 13:19:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * }
         *
         * dependencies {
         *   implementation('org.hibernate:hibernate:3.1') {
         *     //excluding a particular transitive dependency:
         *     exclude module: 'cglib' //by artifact name
         *     exclude group: 'org.jmock' //by group
         *     exclude group: 'org.unwanted', module: 'iAmBuggy' //by both name and group
         *   }
         * }
         * </pre>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MixedObjectiveCHelloWorldApp.groovy

                    NSData *strData = [hello dataUsingEncoding: NSASCIIStringEncoding];
                    [stdout writeData: strData];
                }"""),
    
                    sourceFile("c", "clib.c", """
                #include <stdio.h>
                #include "hello.h"
    
                void bonjour() {
                    printf("Bonjour, Monde!\\n");
                }
            """),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top