Created
October 3, 2022 02:59
-
-
Save mikkipastel/ca4d3c359f760df8c68135a84e85b117 to your computer and use it in GitHub Desktop.
sample upload pom file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
url="/helloaar/" | |
username=USERNAME | |
password=PASSWORD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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