Gradle Utils

Collection of simple Gradle utilities.

Лицензия

Лицензия

Категории

Категории

Gradle Компиляция и сборка
Группа

Группа

com.github.rperez93
Идентификатор

Идентификатор

gradle-utils
Последняя версия

Последняя версия

1.7
Дата

Дата

Тип

Тип

jar
Описание

Описание

Gradle Utils
Collection of simple Gradle utilities.
Ссылка на сайт

Ссылка на сайт

https://github.com/rperez93/gradle-utils
Система контроля версий

Система контроля версий

https://github.com/rperez93/gradle-utils

Скачать gradle-utils

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.rperez93/gradle-utils/ -->
<dependency>
    <groupId>com.github.rperez93</groupId>
    <artifactId>gradle-utils</artifactId>
    <version>1.7</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.rperez93/gradle-utils/
implementation 'com.github.rperez93:gradle-utils:1.7'
// https://jarcasting.com/artifacts/com.github.rperez93/gradle-utils/
implementation ("com.github.rperez93:gradle-utils:1.7")
'com.github.rperez93:gradle-utils:jar:1.7'
<dependency org="com.github.rperez93" name="gradle-utils" rev="1.7">
  <artifact name="gradle-utils" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.rperez93', module='gradle-utils', version='1.7')
)
libraryDependencies += "com.github.rperez93" % "gradle-utils" % "1.7"
[com.github.rperez93/gradle-utils "1.7"]

Зависимости

runtime (3)

Идентификатор библиотеки Тип Версия
org.jetbrains.kotlin : kotlin-stdlib-jdk8 jar 1.3.50
org.jetbrains.kotlin : kotlin-reflect jar 1.3.50
org.eclipse.jgit : org.eclipse.jgit jar 5.4.2.201908231537-r

test (1)

Идентификатор библиотеки Тип Версия
junit : junit jar 4.12

Модули Проекта

Данный проект не имеет модулей.

Gradle Utils Plugin

GitHub release (latest by date) Build Status FOSSA Status

The idea of this library is provide a set of plugins that allow easy configurations of Android gradle files.

Library usage

buildscript {
     repositories {
         jcenter()
     }
     dependencies {
         //sometimes the gradle plugin resolve the org.eclipse.jgit dependency "incomplete"
         // gets fixed putting the dependency manually in your classpath
         classpath 'org.eclipse.jgit:org.eclipse.jgit:5.4.2.201908231537-r'
         classpath 'com.github.rperez93:gradle-utils:{last_version}'
     }
 }

Replace {last_version} with the last release number

Current Plugins

utils-version-from-git-android

Get the last version tag from git and use the tag description as versionName for the com.android.application plugin or the com.android.dynamic-feature plugin.

Usage

Paste the next line of code just before applying the com.android.application plugin or the com.android.dynamic-feature plugin.

apply plugin: 'utils-version-from-git-android'

Contribute, feature request and ideas

Anyone can do a pull request, i will try to verify the pull request the more quickly i can.

Any idea or suggestion is welcome.

License

FOSSA Status

Версии библиотеки

Версия
1.7
1.6.0
1.5.1
1.5.0
1.0.0