diff --git a/FastCache/build.gradle b/FastCache/build.gradle index 1899e5b..3d40b94 100644 --- a/FastCache/build.gradle +++ b/FastCache/build.gradle @@ -23,7 +23,23 @@ plugins { } } } +afterEvaluate { + publishing { + publications { + // Creates a Maven publication called "release". + release(MavenPublication) { + // Applies the component for the release build variant. + from components.release + // You can then customize attributes of the publication as shown below. + groupId = 'com.fastcache' + artifactId = 'fastcache' + version = '0.0.4' + } + } + } + +} dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation 'androidx.appcompat:appcompat:1.2.0'