com.harborfund.gradle.publishing
Owner: Harbor Capital Advisors
Publish your project to S3 maven repository
https://github.com/harborcapital/hc-common-gradle
Sources: https://github.com/harborcapital/hc-common-gradle
Version 0.1.4 (latest)
Created 31 May 2019.
Publish your project to S3 maven repository
Add this plugin to your build using the plugins DSL:
plugins {
id("com.harborfund.gradle.publishing") version "0.1.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.harborfund.gradle.publishing:com.harborfund.gradle.publishing.gradle.plugin:0.1.4") }
It can then be applied in the precompiled script plugin:plugins { id("com.harborfund.gradle.publishing") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.harborfund.gradle.publishing:com.harborfund.gradle.publishing.gradle.plugin:0.1.4") } } apply(plugin = "com.harborfund.gradle.publishing")
- Applying plugins to all subprojects .