Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 355 for 1library (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    | yes
    | no
    | This configuration is meant to be used by consumers, to retrieve all the elements necessary to run against this library.
    |===
    
    .Java Library plugin - configurations used by the library itself
    [%header%autowidth,compact]
    |===
    | Configuration name | Role | Consumable? | Resolvable? | Description
    
    | compileClasspath
    | For compiling this library
    | no
    | yes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

            file('a/build.gradle') << '''
                apply plugin: 'java-library'
    
                dependencies {
                    api project(':b')
                    implementation project(':c')
                }
            '''
            ['b', 'c'].each {
                file("${it}/build.gradle") << """
                    apply plugin: 'java-library'
                """
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

                    apply plugin: 'swift-library'
                    library.linkage = [Linkage.STATIC]
                    dependencies {
                        api project(':log')
                    }
                }
                project(':log') {
                    apply plugin: 'swift-library'
                    library.linkage = [Linkage.STATIC]
                }
    """
            app.library.writeToProject(file("hello"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (1)
  4. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/java/JavaApplicationOutgoingVariantsIntegrationTest.groovy

                java.jar (project :java) {artifactType=jar, org.gradle.category=library, org.gradle.dependency.bundling=external, ${defaultTargetPlatform()}, org.gradle.libraryelements=jar, org.gradle.usage=java-runtime}
                file-dep.jar {artifactType=jar}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryOutgoingVariantsIntegrationTest.groovy

    def artifactType = Attribute.of('artifactType', String)
    
    allprojects {
        repositories { maven { url '${mavenRepo.uri}' } }
    }
    
    project(':other-java') {
        apply plugin: 'java-library'
    }
    
    project(':java') {
        apply plugin: 'java-library'
        dependencies {
            api 'test:api:1.0'
            implementation project(':other-java')
            implementation files('file-dep.jar')
            compileOnly 'test:compile-only:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

                getterName('getGroovyJson')
            }
    
            when:
            generate {
                library('groovy.json', 'g:a:v')
                library('groovyJson', 'g:a:v')
    
                library('tada_one', 'g:a:v')
                library('tada.one', 'g:a:v')
                library('tadaOne', 'g:a:v')
            }
    
            then:
            ex = thrown()
            verify(ex.message, """Cannot generate dependency accessors:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/JavaProjectOutgoingVariantsIntegrationTest.groovy

                java.jar (project :java) {artifactType=jar, org.gradle.category=library, org.gradle.dependency.bundling=external, ${defaultTargetPlatform()}, org.gradle.libraryelements=jar, org.gradle.usage=java-runtime}
                file-dep.jar {artifactType=jar}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    |<<#sec:groovy_library,groovy-library>>|A Groovy library
    |<<#sec:scala_application,scala-application>>|A Scala application
    |<<#sec:scala_library,scala-library>>|A Scala library
    |<<#sec:cpp_application,cpp-application>>|A command-line application implemented in C++
    |<<#sec:cpp_library,cpp-library>>|A C++ library
    |=================
    
    [[sec:build_init_tasks]]
    == Tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

                    }
                }
                project(":lib") {
                    apply plugin: "cpp-library"
    
                    dependencies {
                        implementation project(':greet')
                    }
                }
                project(":greet") {
                    apply plugin: "cpp-library"
    
                    library {
                        linkage = [Linkage.STATIC]
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaLibraryInitIntegrationTest.groovy

        public static final String SAMPLE_LIBRARY_CLASS = "org/example/Library.java"
        public static final String SAMPLE_LIBRARY_TEST_CLASS = "org/example/LibraryTest.java"
        public static final String SAMPLE_SPOCK_LIBRARY_TEST_CLASS = "org/example/LibraryTest.groovy"
    
        def "defaults to Kotlin build scripts"() {
            when:
            run ('init', '--type', 'java-library' )
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 11.8K bytes
    - Viewed (1)
Back to top