Appearance
Making Local Changes to the Library
This page is for documenting changes you make to the library that are not in the main repository.
Appearance
This page is for documenting changes you make to the library that are not in the main repository.
build.gradle.kts
and navigate to the publishing
block. Change the artifactId
to local
and the version
to x.x.x-local
, where x.x.x
is the version of the library you want to set it as. ./gradlew publishToMavenLocal
build.dependencies.gradle
and navigate to the repositories
block. Add mavenLocal()
to the block. dependencies
block and add implementation 'com.pedropathing:local:x.x.x-local'
where x.x.x
is the version you set in the library.