- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for publishing (0.11 sec)
-
build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts
*/ import java.time.Year plugins { id("gradlebuild.module-identity") id("gradlebuild.publish-defaults") id("signing") `maven-publish` } configureJavadocVariant() publishing { publications { create<MavenPublication>("gradleDistribution") { configureGradleModulePublication() } } plugins.withId("gradlebuild.shaded-jar") {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Sep 19 13:21:47 UTC 2024 - 5.9K bytes - Viewed (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
configurations.all { withDependencies { remove(project.dependencies.gradleApi()) remove(project.dependencies.gradleTestKit()) } } publishing.publications.withType<MavenPublication>().configureEach { if (name == "pluginMaven") { groupId = project.group.toString() artifactId = moduleIdentity.baseName.get() } pom { licenses {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 08 14:54:27 UTC 2024 - 6.4K bytes - Viewed (0) -
.teamcity/.mvn/develocity.xml
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 09:50:46 UTC 2024 - 846 bytes - Viewed (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-defaults.gradle.kts
*/ import gradlebuild.basics.gradleProperty import gradlebuild.identity.extension.ModuleIdentityExtension import org.gradle.api.publish.maven.MavenPublication plugins { id("publishing") } val artifactoryUrl get() = System.getenv("GRADLE_INTERNAL_REPO_URL") ?: "" val artifactoryUserName get() = project.providers.gradleProperty("artifactoryUserName").orNull
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 25 08:20:22 UTC 2024 - 3.3K bytes - Viewed (0) -
build-logic-commons/publishing/build.gradle.kts
plugins { `kotlin-dsl` } group = "gradlebuild" description = "Provides a plugin for publishing some of Gradle's subprojects to Artifactory or the Plugin Portal" dependencies { implementation(projects.basics) implementation(projects.moduleIdentity) implementation("com.gradle.publish:plugin-publish-plugin")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 08 14:54:27 UTC 2024 - 329 bytes - Viewed (0) -
util/deploy_snapshot.sh
#!/bin/bash # see https://coderwall.com/p/9b_lfq set -e -u function mvn_deploy() { ./mvnw clean deploy -DskipTests=true "$@" } echo "Publishing Maven snapshot..." mvn_deploy mvn_deploy -f android/pom.xml
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 16 20:48:20 UTC 2023 - 245 bytes - Viewed (0) -
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: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 01 11:07:32 UTC 2024 - 2K bytes - Viewed (0) -
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 Nov 06 11:36:14 UTC 2024 - Last Modified: Sun Feb 25 22:19:29 UTC 2024 - 4.5K bytes - Viewed (0) -
build-logic-commons/settings.gradle.kts
// Code quality rules common to :build-logic and the root build include("code-quality-rules") // Plugins to build :build-logic plugins include("gradle-plugin") // Plugins to publish gradle projects include("publishing") rootProject.name = "build-logic-commons" // Make sure all the build-logic is compiled for the right Java version gradle.lifecycle.beforeProject { pluginManager.withPlugin("java-base") {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Nov 06 06:19:29 UTC 2024 - 1.8K bytes - Viewed (0) -
architecture/platforms.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 Nov 06 11:36:14 UTC 2024 - Last Modified: Thu May 02 06:42:46 UTC 2024 - 5.4K bytes - Viewed (0)