Skip to content

Commit 2aaecb0

Browse files
committed
feat: cd
1 parent 8b9a1ba commit 2aaecb0

2 files changed

Lines changed: 21 additions & 0 deletions

File tree

aegis/build.gradle.kts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
plugins {
22
id("com.android.library")
33
id("org.jetbrains.kotlin.android")
4+
`maven-publish`
45
}
56

67
android {
@@ -49,4 +50,22 @@ dependencies {
4950
testImplementation("junit:junit:4.13.2")
5051
androidTestImplementation("androidx.test.ext:junit:1.1.5")
5152
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+
}
5271
}

jitpack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
jdk:
2+
- openjdk22

0 commit comments

Comments
 (0)