Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,151 for 1library (0.14 sec)

  1. platforms/documentation/docs/src/snippets/publishing/javaLibrary/groovy/build.gradle

    // tag::apply-plugins[]
    plugins {
        id 'java-library'
        id 'maven-publish'
    }
    // end::apply-plugins[]
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        api 'commons-httpclient:commons-httpclient:3.1'
        implementation 'org.apache.commons:commons-lang3:3.5'
    }
    
    // tag::configure-publishing[]
    group = 'org.example'
    version = '1.0'
    
    // tag::enable-build-id[]
    publishing {
        publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/publishing/javaLibrary/kotlin/build.gradle.kts

    // tag::apply-plugins[]
    plugins {
        `java-library`
        `maven-publish`
    }
    // end::apply-plugins[]
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        api("commons-httpclient:commons-httpclient:3.1")
        implementation("org.apache.commons:commons-lang3:3.5")
    }
    
    // tag::configure-publishing[]
    group = "org.example"
    version = "1.0"
    
    // tag::enable-build-id[]
    publishing {
        publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-library/src/main/resources/META-INF/gradle-plugins/org.gradle.java-library-distribution.properties

    Tom Tresansky <******@****.***> 1708617374 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 675 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-main.dot

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/AnsiConsoleUtil.java

    import org.gradle.internal.os.OperatingSystem;
    
    import java.io.IOException;
    import java.io.OutputStream;
    import java.io.PrintStream;
    
    import static org.fusesource.jansi.internal.CLibrary.STDOUT_FILENO;
    import static org.fusesource.jansi.internal.CLibrary.isatty;
    import static org.fusesource.jansi.internal.Kernel32.GetConsoleMode;
    import static org.fusesource.jansi.internal.Kernel32.GetStdHandle;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    ====
    
    
    Both `${languageLC.raw}-library-conventions` and `${languageLC.raw}-application-conventions` apply the `${languageLC.raw}-common-conventions` plugin *(1)* so that the configuration performed there is shared by library and application projects alike.
    Next they apply the `java-library` or `application` plugin respectively *(2)* thus combining our common configuration logic with specifics for a library or application.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.platform.base.Library.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. samples/guide/src/main/java/okhttp3/recipes/kt/YubikeyClientAuth.kt

     */
    @SuppressSignatureCheck
    class YubikeyClientAuth {
      fun run() {
        // The typical PKCS11 slot, may vary with different hardware.
        val slot = 0
    
        val config = "--name=OpenSC\nlibrary=/Library/OpenSC/lib/opensc-pkcs11.so\nslot=$slot\n"
    
        // May fail with ProviderException with root cause like
        // sun.security.pkcs11.wrapper.PKCS11Exception: CKR_SLOT_ID_INVALID
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    ----
    Attributes
        - org.gradle.category            = library
        - org.gradle.dependency.bundling = external
        - org.gradle.jvm.version         = 11
        - org.gradle.libraryelements     = jar
        - org.gradle.usage               = java-runtime
    ----
    
    What it tells us is that the Java Library plugin produces variants with 5 attributes:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/internal/DefaultCppLibraryTest.groovy

        def project = TestUtil.createRootProject(tmpDir.testDirectory)
        DefaultCppLibrary library
    
        def setup() {
            library = project.objects.newInstance(DefaultCppLibrary, "main")
        }
    
        def "has display name"() {
            expect:
            library.displayName.displayName == "C++ library 'main'"
            library.toString() == "C++ library 'main'"
        }
    
        def "has implementation configuration"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top