diff --git a/filestack/build.gradle b/filestack/build.gradle index 967457f..9ff7d68 100644 --- a/filestack/build.gradle +++ b/filestack/build.gradle @@ -1,6 +1,8 @@ plugins { id 'com.android.library' id 'org.jetbrains.kotlin.android' + + id 'maven-publish' } android { @@ -63,4 +65,18 @@ dependencies { testImplementation("junit:junit:4.13.2") androidTestImplementation("androidx.test.ext:junit:1.1.3") androidTestImplementation("androidx.test.espresso:espresso-core:3.4.0") +} + +afterEvaluate { + publishing { + publications { + release(MavenPublication) { + from components.release + + groupId = 'com.github.boykod' + artifactId = 'smartsuite-filestack' + version = '0.0.1' + } + } + } } \ No newline at end of file diff --git a/jitpack.yml b/jitpack.yml new file mode 100644 index 0000000..46c8529 --- /dev/null +++ b/jitpack.yml @@ -0,0 +1,2 @@ +jdk: + - openjdk11 \ No newline at end of file