Search Gradle plugins

com.mobilesolutionworks.gradle.athena

Athena is a Gradle plugin for managing Carthage using Gradle. This plugin would reduce the learning curve of using Carthage and its caching. This plugin allow you to use Rome as the caching manager, or use Athena instead. With Athena, the cache will be uploaded into Artifactory and Bintray

https://github.com/yunarta/works-athena-gradle-plugin

Sources: https://github.com/yunarta/works-athena-gradle-plugin

Version 1.0.2

Created 02 July 2018.

Athena is a Gradle plugin for managing Carthage using Gradle. This plugin would reduce the learning curve of using Carthage and its caching. This plugin allow you to use Rome as the caching manager, or use Athena instead. With Athena, the cache will be uploaded into Artifactory and Bintray

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.mobilesolutionworks.gradle.athena") version "1.0.2"
}

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.mobilesolutionworks.gradle.athena:com.mobilesolutionworks.gradle.athena.gradle.plugin:1.0.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.mobilesolutionworks.gradle.athena")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.mobilesolutionworks.gradle.athena:com.mobilesolutionworks.gradle.athena.gradle.plugin:1.0.2")
      }
    }
    
    apply(plugin = "com.mobilesolutionworks.gradle.athena")
  • Applying plugins to all subprojects .