Skip to content

Instantly share code, notes, and snippets.

@mikkipastel
Created October 3, 2022 02:59
Show Gist options
  • Save mikkipastel/ca4d3c359f760df8c68135a84e85b117 to your computer and use it in GitHub Desktop.
Save mikkipastel/ca4d3c359f760df8c68135a84e85b117 to your computer and use it in GitHub Desktop.
sample upload pom file
url="/helloaar/"
username=USERNAME
password=PASSWORD
//upload.gradle: same folder with build.gradle of library module
apply plugin: 'maven-publish'
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
groupId libraryGroupId
artifactId libraryArtifactId
version libraryVersion
from components.release
}
}
repositories {
maven {
url = "/helloaar/" // local folder
credentials {
username "${username}"
password "${password}"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment