Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 230 for lombok (0.13 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AnnotationProcessingSmokeTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.smoketests
    
    import org.gradle.testkit.runner.GradleRunner
    
    class AnnotationProcessingSmokeTest extends AbstractSmokeTest {
    
        def 'project lombok works when options.fork=#fork'() {
            given:
            buildFile << """
                plugins {
                    id("java")
                }
                ${mavenCentralRepository()}
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/LombokPluginSmokeTest.groovy

    package org.gradle.smoketests
    
    class LombokPluginSmokeTest extends AbstractPluginValidatingSmokeTest {
        @Override
        Map<String, Versions> getPluginsToValidate() {
            [
                'io.freefair.lombok': TestedVersions.lombok
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 869 bytes
    - Viewed (0)
  3. build-logic/performance-testing/build.gradle.kts

        implementation(project(":cleanup"))
        implementation(project(":build-update-utils"))
    
        implementation("org.openmbee.junit:junit-xml-parser") {
            exclude(module = "lombok") // don't need it at runtime
        }
        implementation("com.google.guava:guava")
        implementation("com.google.code.gson:gson")
        implementation("commons-io:commons-io")
        implementation("javax.activation:activation")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/filter/AnnotationProcessorFilter.java

        public static FilteringClassLoader getFilteredClassLoader(ClassLoader parent) {
            return new FilteringClassLoader(parent, getExtraAllowedPackages());
        }
    
        /**
         * Many popular annotation processors like lombok need access to compiler internals
         * to do their magic, e.g. to inspect or even change method bodies. This is not valid
         * according to the annotation processing spec, but forbidding it would upset a lot of
         * our users.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. .idea/kotlinTestDataPluginTestDataPaths.xml

            <option value="$PROJECT_DIR$/plugins/noarg/testData" />
            <option value="$PROJECT_DIR$/plugins/parcelize/parcelize-compiler/testData" />
            <option value="$PROJECT_DIR$/plugins/lombok/testData" />
            <option value="$PROJECT_DIR$/plugins/sam-with-receiver/testData" />
            <option value="$PROJECT_DIR$/plugins/kotlinx-serialization/testData" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 15:09:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. .idea/misc.xml

              <item index="8" class="java.lang.String" itemvalue="javax.annotation.Nonnull" />
              <item index="9" class="java.lang.String" itemvalue="lombok.NonNull" />
              <item index="10" class="java.lang.String" itemvalue="org.checkerframework.checker.nullness.compatqual.NonNullDecl" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. maven-model/src/test/java/org/apache/maven/model/v4/ModelXmlTest.java

            Map<String, String> props = new LinkedHashMap<>();
            props.put("javax.version", "3.1.0");
            props.put("mockito.version", "1.10.19");
            props.put("hamcret.version", "2.1");
            props.put("lombok.version", "1.18.6");
            props.put("junit.version", "4.12");
            Model model = Model.newBuilder(true).properties(props).build();
            String xml = toXml(model);
    
            for (int i = 0; i < 10; i++) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 27 23:11:34 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. .github/workflows/iam-integrations.yaml

            etcd: ["", "http://localhost:2379"]
            openid: ["", "http://127.0.0.1:5556/dex"]
            exclude:
              # exclude combos where all are empty.
              - ldap: ""
                etcd: ""
                openid: ""
              # exclude combos where both ldap and openid IDPs are specified.
              - ldap: "localhost:389"
                openid: "http://127.0.0.1:5556/dex"
    
        steps:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    NOTE: Dependencies on other projects isn't covered in this guide.
    To learn more about this subject, have a look at the https://github.com/gradle/native-samples/tree/master/cpp/transitive-dependencies[transitive dependency sample] for a demonstration.
    
    NOTE: Publishing libraries to Maven repositories is outside the scope of this guide.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. build-logic/packaging/src/test/kotlin/gradlebuild/packaging/GradleDistributionInstallTest.kt

                mkdir()
                File(this, "gradle").writeText("stub")
                File(this, "gradle.exe").writeText("stub")
            }
    
            assertFails("Install directory $target does not look like a Gradle installation. Cannot delete it to install.")
            assertTargetIsPreserved()
        }
    
        @Test
        fun `does not install to non-empty dir with empty lib`() {
            target.resolve("bin").apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:26 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top