Skip to content

Commit

Permalink
🐛 fix jitpack issue
Browse files Browse the repository at this point in the history
  • Loading branch information
theapache64 committed Mar 30, 2023
1 parent 177e63c commit fc77055
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
2 changes: 2 additions & 0 deletions jitpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
jdk:
- openjdk11
22 changes: 15 additions & 7 deletions rebugger/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ android {
namespace 'com.theapache64.rebugger'
compileSdk 33

publishing {
singleVariant("release") {
withSourcesJar()
withJavadocJar()
}
}

defaultConfig {
minSdk 24
targetSdk 33
Expand Down Expand Up @@ -50,14 +57,15 @@ dependencies {
implementation "androidx.compose.runtime:runtime:$compose_version"
}

afterEvaluate {
publishing {
publications {
mavenPublication(MavenPublication) {
publishing {
publications {
release(MavenPublication) {
groupId = 'com.github.theapache64'
artifactId = 'rebugger'
version = '1.0.0-alpha02'

afterEvaluate {
from components.release
groupId 'com.github.theapache64'
artifactId 'rebugger'
version '1.0.0-alpha01'
}
}
}
Expand Down

0 comments on commit fc77055

Please sign in to comment.