Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 159 for publishing (0.33 sec)

  1. README.md

    [Gradle](https://gradle.org/) is a build tool with a focus on build automation and support for multi-language development. If you are building, testing, publishing, and deploying software on any platform, Gradle offers a flexible model that can support the entire development lifecycle from compiling and packaging code to publishing websites. Gradle has been designed to support build automation across multiple languages and platforms, including Java, Scala, Android, Kotlin, C/C++, and Groovy,...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 20:49:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/software/publish/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Base plugin for the maven and ivy publish plugins. Defines the publishing extension."
    
    errorprone {
        disabledChecks.addAll(
            "InlineMeSuggester", // 7 occurrences
            "MixedMutabilityReturnType", // 5 occurrences
            "StringCaseLocaleUsage", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.serviceProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

                    plugins.create('greeting') {
                        id = 'com.example.greeting'
                        implementationClass = 'example.plugin.GreetingPlugin'
                    }
                }
                publishing {
                    repositories {
                        maven { url = '${mavenRepo.uri}' }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/build.gradle

                excludeTestsMatching 'org.gradle.docs.samples.*.convention-plugins*sanityCheck.sample'
                excludeTestsMatching 'org.gradle.docs.samples.*.incubating-publishing-convention-plugins*publish.sample'
                excludeTestsMatching 'org.gradle.docs.samples.*.publishing-convention-plugins*publish.sample'
                excludeTestsMatching 'org.gradle.docs.samples.*.snippet-configuration-cache-test-kit*configurationCacheTestKit.sample'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinMessageBusProvider.kt

    import org.jetbrains.kotlin.analysis.api.platform.modification.KotlinModificationTopics
    
    /**
     * [KotlinMessageBusProvider] allows Analysis API implementations to provide a custom [MessageBus]. When subscribing to or publishing to
     * Analysis API topics ([KotlinModificationTopics]), the message bus provided by [getMessageBus] should be used, not the [Project]'s message bus.
     */
    public interface KotlinMessageBusProvider : KotlinPlatformComponent {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryDocumentationIntegrationTest.groovy

                            'Internal.java'('public class Internal { void use() { } }')
                        }
                    }
                }
            }
        }
    
        def "javadocJar task is only created when publishing is requested"() {
            when:
            fails(':a:javadocJar')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnPluginTooNewFailureDescriberIntegrationTest.groovy

                    plugins.create('greeting') {
                        id = 'com.example.greeting'
                        implementationClass = 'example.plugin.GreetingPlugin'
                    }
                }
                publishing {
                    repositories {
                        maven { url = '${mavenRepo.uri}' }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 20:48:53 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. architecture/standards/0004-use-a-platform-architecture.md

    This is a general purpose platform that builds on the core automation platform to add support for the automation of software development.
    This includes work such as compiling, testing and documenting software, plus sharing that software via publishing and dependency management.
    This platform is agnostic to what kind of software is being developed.
    It might be Java or Kotlin libraries running on the JVM, Gradle plugins, Android or iOS applications, C++ libraries, and so on.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. okhttp-android/build.gradle.kts

      androidTestImplementation(libs.assertk)
      androidTestImplementation(projects.mockwebserver3Junit4)
      androidTestImplementation(libs.androidx.test.runner)
    }
    
    mavenPublishing {
      // AGP 7.2 embeds Dokka 4, which breaks publishing. Android modules are hardcoded to generate Javadoc instead of Gfm.
      configure(com.vanniktech.maven.publish.AndroidSingleVariantLibrary(publishJavadocJar=false))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 11:07:32 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/component/SoftwareComponentFactory.java

    /**
     * A software component factory is responsible for providing to
     * plugins a way to create software components. Currently the
     * software factory only allows the creation of adhoc software
     * components which can be used for publishing simple components.
     *
     * This is the case whenever there's no component model to be
     * used and that the plugin can solely rely on outgoing variants
     * to publish variants.
     *
     * @since 5.3
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top