diff --git a/README.md b/README.md index d0f33c5..c35fe0c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,10 @@ Run rooted Kotlin JVM code made super easy with coroutines and parcelize! Check out demo at `app` to see just how easy it is. Also check out more complicated demos: -* [VPN Hotspot](https://github.com/Mygod/VPNHotspot) +* [VPN Hotspot](https://github.com/Mygod/VPNHotspot) (how this library started) + +Use it now! +`be.mygod.librootkotlinx:librootkotlinx:1.0.0` ## Features diff --git a/build.gradle.kts b/build.gradle.kts index 0369bf6..10f3963 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,3 +5,9 @@ plugins { id("com.github.ben-manes.versions") version "0.42.0" id("org.jetbrains.kotlin.android") version "1.7.10" apply false } + +buildscript { + dependencies { + classpath("com.vanniktech:gradle-maven-publish-plugin:0.21.0") + } +} diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index 8374253..10e3989 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -1,5 +1,6 @@ plugins { id("com.android.library") + id("com.vanniktech.maven.publish") kotlin("android") id("kotlin-parcelize") } diff --git a/lib/gradle.properties b/lib/gradle.properties new file mode 100644 index 0000000..c8073be --- /dev/null +++ b/lib/gradle.properties @@ -0,0 +1,23 @@ +SONATYPE_HOST=DEFAULT +RELEASE_SIGNING_ENABLED=true + +GROUP=be.mygod.librootkotlinx +POM_ARTIFACT_ID=librootkotlinx +VERSION_NAME=1.0.0 + +POM_NAME=librootkotlinx +POM_DESCRIPTION=Run rooted Kotlin JVM code made super easy with coroutines and parcelize! +POM_INCEPTION_YEAR=2022 +POM_URL=https://github.com/Mygod/librootkotlinx + +POM_LICENSE_NAME=The Apache Software License, Version 2.0 +POM_LICENSE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt +POM_LICENSE_DIST=repo + +POM_SCM_URL=https://github.com/Mygod/librootkotlinx +POM_SCM_CONNECTION=scm:git@github.com:Mygod/librootkotlinx.git +POM_SCM_DEV_CONNECTION=scm:git@github.com:Mygod/librootkotlinx.git + +POM_DEVELOPER_ID=Mygod +POM_DEVELOPER_NAME=Mygod +POM_DEVELOPER_URL=https://github.com/Mygod