We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 834bfe9 commit a249303Copy full SHA for a249303
base/build.gradle.kts
@@ -6,6 +6,20 @@ plugins {
6
7
group = "com.github.enginebai"
8
9
+afterEvaluate {
10
+ publishing {
11
+ publications {
12
+ create<MavenPublication>("library") {
13
+ groupId = "com.github.enginebai"
14
+ artifactId = "AndroidBase"
15
+ version = "1.0.1"
16
+ // base-release.aar = $moduleName-$buildType.aar
17
+ artifact("$buildDir/outputs/aar/base-release.aar")
18
+ }
19
20
21
+}
22
+
23
configAndroid()
24
importCommonDependencies()
25
jitpack.yml
@@ -1 +1,6 @@
1
jdk: openjdk11
2
3
+before_install:
4
+ - ./gradlew clean -xtest -xlint :base:assembleRelease
5
+install:
+ - ./gradlew :base:publishToMavenLocal
0 commit comments