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 8b9a1ba commit 2aaecb0Copy full SHA for 2aaecb0
2 files changed
aegis/build.gradle.kts
@@ -1,6 +1,7 @@
1
plugins {
2
id("com.android.library")
3
id("org.jetbrains.kotlin.android")
4
+ `maven-publish`
5
}
6
7
android {
@@ -49,4 +50,22 @@ dependencies {
49
50
testImplementation("junit:junit:4.13.2")
51
androidTestImplementation("androidx.test.ext:junit:1.1.5")
52
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
53
+}
54
+
55
+afterEvaluate {
56
+ publishing {
57
+ publications {
58
+ register<MavenPublication>("release") {
59
+ from(components["release"])
60
+ groupId = "io.delightlabs.aegis"
61
+ artifactId = "aegis-android"
62
+ version = "v0.3.0"
63
64
+ pom {
65
+ name.set("aegis-android")
66
+ description.set("Aegis for android")
67
+ }
68
69
70
71
jitpack.yml
@@ -0,0 +1,2 @@
+jdk:
+ - openjdk22
0 commit comments