Skip to content

Instantly share code, notes, and snippets.

@tslmy
Created September 16, 2022 19:00
Show Gist options
  • Save tslmy/4f7386e8ffa9fcbf104a6a5a85cc524f to your computer and use it in GitHub Desktop.
Save tslmy/4f7386e8ffa9fcbf104a6a5a85cc524f to your computer and use it in GitHub Desktop.
Defining your own Maven Repository server: Maven
<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