The home of the common Gradle Scripts used by Tagit and Mobeix Java frameworks, libraries and applications.
Define a property tagitGradleVersion
for use inside the Gradle scripts. The value of this property is the branch name in the GitHub repositories.
tagitGradleVersion = release/v7.5
Read the raw content from the GitHub repository using the tagitGradleVersion
property.
From
apply from: "${rootDir}/gradle/tagit.gradle"
To
apply from: "https://raw.githubusercontent.com/tagitmobile/tagit-core-gradle/${tagitGradleVersion}/gradle/tagit.gradle"
From
apply from: "${rootDir}/gradle/tagit-rest.gradle
To
apply from: "https://raw.githubusercontent.com/tagitmobile/tagit-core-gradle/${tagitGradleVersion}/gradle/tagit-rest.gradle"
From
apply from: "${rootDir}/gradle/tagit-angular.gradle
To
apply from: "https://raw.githubusercontent.com/tagitmobile/tagit-core-gradle/${tagitGradleVersion}/gradle/tagit-angular.gradle"
For publishing Maven artifacts: From
apply from: "${rootDir}/gradle/publications.gradle"
To
apply from: "https://raw.githubusercontent.com/tagitmobile/tagit-core-gradle/${tagitGradleVersion}/gradle/publications.gradle"
These Gradle Scripts are released under version 2.0 of the Apache License.