Skip to content

Commit

Permalink
fix maven publish
Browse files Browse the repository at this point in the history
  • Loading branch information
Sascha Roth committed Mar 21, 2023
1 parent 58bff63 commit b0a70c1
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion restrictionbypass/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
//apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'maven-publish'

group = 'com.github.ChickenHook'
android {
compileSdkVersion 33
Expand Down Expand Up @@ -44,6 +45,14 @@ android {
}
}

publishing {
publications {
maven(MavenPublication) {
from components.java
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

Expand Down

0 comments on commit b0a70c1

Please sign in to comment.