Created
September 16, 2022 19:00
-
-
Save tslmy/4f7386e8ffa9fcbf104a6a5a85cc524f to your computer and use it in GitHub Desktop.
Defining your own Maven Repository server: Maven
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
<distributionManagement> | |
<snapshotRepository> | |
<id>repo-for-snapshots</id> | |
<name>Repository for Snapshots</name> | |
<url>https://example.com/repositories/snapshots/</url> | |
</snapshotRepository> | |
<repository> | |
<id>repo-for-releases</id> | |
<name>Repository for Releases</name> | |
<url>https://example.com/repositories/releases/</url> | |
</repository> | |
</distributionManagement> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment