This repository was archived by the owner on Oct 18, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-18
lines changed
Expand file tree Collapse file tree 2 files changed +5
-18
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,13 @@ Android Java bindings for [tree-sitter](https://tree-sitter.github.io/tree-sitte
88
99``` gradle
1010// main library
11- implementation 'com.itsaky.androidide :android-tree-sitter:<version>'
11+ implementation 'io.github.itsaky :android-tree-sitter:<version>'
1212
1313// tree-sitter-java
14- implementation 'com.itsaky.androidide :tree-sitter-java:<version>'
14+ implementation 'io.github.itsaky :tree-sitter-java:<version>'
1515
1616// tree-sitter-python
17- implementation 'com.itsaky.androidide :tree-sitter-python:<version>'
17+ implementation 'io.github.itsaky :tree-sitter-python:<version>'
1818```
1919
2020## Building
Original file line number Diff line number Diff line change @@ -33,24 +33,11 @@ subprojects {
3333 plugins.withId(" com.android.library" ) { configureBaseExtension() }
3434
3535 plugins.withId(" com.vanniktech.maven.publish.base" ) {
36-
37- configure<PublishingExtension > {
38- repositories {
39- maven {
40- name = " GitHubPackages"
41- url = uri(" https://maven.pkg.github.com/androidideofficial/android-tree-sitter" )
42- credentials {
43- username = project.findProperty(" ghPackagesUsername" ) as String? ? : System .getenv(" USERNAME" )
44- password = project.findProperty(" ghPackagesToken" ) as String? ? : System .getenv(" TOKEN" )
45- }
46- }
47- }
48- }
49-
5036 configure<MavenPublishBaseExtension > {
51- group = " com.itsaky.androidide "
37+ group = " io.github.itsaky "
5238 version = project.findProperty(" VERSION_NAME" )!!
5339 pomFromGradleProperties()
40+ publishToMavenCentral(SonatypeHost .S01 )
5441 signAllPublications()
5542 configure(AndroidSingleVariantLibrary (publishJavadocJar = false ))
5643 }
You can’t perform that action at this time.
0 commit comments