Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 241 for langs3 (0.33 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/EnforcedPlatformIntegrationTest.groovy

                }
            """
    
            file("lib/build.gradle") << """
                plugins {
                    id 'java-library'
                }
                dependencies {
                    api 'org.apache.commons:commons-lang3:3.10'
                }
            """
    
            file('platform/build.gradle') << """
                plugins {
                    id 'java-platform'
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildClassloadingIntegrationTest.groovy

                        classpath "org.apache.commons:commons-lang3:\${version}"
                    }
                }
    
                rootProject {
                    it.tasks.create('doStringOp') {
                        doLast {
                            println org.apache.commons.lang3.StringUtils.join('Hello', 'world')
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:26 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ProjectInternalViewDependencyIntegrationTest.groovy

                dependencies {
                    runtimeOnly "com.h2database:h2:2.1.214"
                    implementation "com.fasterxml.jackson.core:jackson-databind:2.13.3"
                    compileOnly "org.apache.commons:commons-lang3:3.12.0"
                }
            """
            writeBaseBuildFile()
            writeNonApiAccessibilityTest()
    
            when:
            succeeds "customTest"
    
            then:
            result.assertTaskExecuted(":jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java

            final ReadingConverter converter;
            if (langs == null || langs.length == 0) {
                converter = new LangAnayzerConverter(null);
            } else {
                final ReadingConverterChain chain = new ReadingConverterChain();
                for (final String lang : langs) {
                    chain.addConverter(new LangAnayzerConverter(lang));
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/VariantAwareResolutionWithConfigurationAttributesIntegrationTest.groovy

                    implementationFreeDebug 'org.apache.commons:commons-lang3:3.5'
                ''')
                src {
                    main {
                        java {
                            'Hello.java'('''import org.apache.commons.lang3.StringUtils;
    
                                public class Hello {
                                    public static void main(String... args) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java-library/module-disabled/tests/buildJavaModule.out

        requires com.google.gson;          // real module
                           ^
    /home/user/gradle/samples/src/main/java/module-info.java:3: error: module not found: org.apache.commons.lang3
        requires org.apache.commons.lang3; // automatic module
                                   ^
    2 errors
    
    FAILURE: Build failed with an exception.
    
    * What went wrong:
    Execution failed for task ':compileJava'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 09:29:37 UTC 2024
    - 735 bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpWebAndJavaProjectIntegrationTest.groovy

            def webClasspath = classpath('web')
            webClasspath.assertHasLibs('commons-lang3-3.0.jar', 'javax.servlet-api-3.1.0.jar', "guava-18.0.jar", 'junit-4.13.jar', 'hamcrest-core-1.3.jar')
            webClasspath.lib('commons-lang3-3.0.jar').assertIsDeployedTo("/WEB-INF/lib")
            webClasspath.lib('javax.servlet-api-3.1.0.jar').assertIsExcludedFromDeployment()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/testing/test-suite-multi-configure-each/groovy/build.gradle

                }
            }
            // <3>
            integrationTest(JvmTestSuite)
            functionalTest(JvmTestSuite) {
                dependencies { // <4>
                    implementation('org.apache.commons:commons-lang3:3.11')
                }
            }
        }
    }
    // end::multi-configure[]
    
    tasks.register('checkDependencies') {
        def testRuntimeClasspath = configurations.getByName("testRuntimeClasspath")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/test-suite-multi-configure-each-matching/groovy/build.gradle

            }
    
            integrationTest(JvmTestSuite)
            functionalTest(JvmTestSuite) {
                useJUnit() // <2>
                dependencies { // <3>
                    implementation('org.apache.commons:commons-lang3:3.11')
                }
            }
        }
    }
    // end::multi-configure[]
    
    tasks.register('checkDependencies') {
        def testRuntimeClasspath = configurations.testRuntimeClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/performance/resolveAtBuildTime/tests/copyFiles.out

    >> Compilation deps: [commons-lang3-3.11.jar]...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 46 bytes
    - Viewed (0)
Back to top