Maven Repository Hosting
Host unlimited Maven artifacts with enterprise-grade security and reliability. No egress fees, no per-user pricing. Just simple, affordable repository management.
Setup in less than a minute

Everything you need for Maven artifacts
CloudRepo provides all the features you need to manage your Maven dependencies professionally.
- Public & Private Repositories
- Host both public and private Maven artifacts with granular access control.
- Global HTTPS Access
- Access your repositories from anywhere with secure HTTPS endpoints.
- No Special Plugins
- Works with standard Maven, Gradle, and other build tools out of the box.
- Unlimited Artifacts
- Upload as many artifacts as you need. Only pay for storage.
- Version Management
- Full support for SNAPSHOT and release versions with automatic cleanup.
- Security Built-in
- User management, API keys, IP whitelisting, and encryption at rest.
Quick Setup Guide
Get up and running with CloudRepo Maven repositories in three simple steps.
1
Configure Your POM
Add CloudRepo to your pom.xml for both releases and snapshots.
<distributionManagement>
<repository>
<id>cloudrepo-releases</id>
<url>https://[your-org].mycloudrepo.io/repositories/releases</url>
</repository>
<snapshotRepository>
<id>cloudrepo-snapshots</id>
<url>https://[your-org].cloudrepo.io/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
2
Configure Authentication
Add your credentials to ~/.m2/settings.xml for secure access.
<servers>
<server>
<id>cloudrepo-releases</id>
<username>[username]</username>
<password>[password]</password>
</server>
<server>
<id>cloudrepo-snapshots</id>
<username>[username]</username>
<password>[password]</password>
</server>
</servers>
3
Deploy Your Artifacts
Deploy using standard Maven commands. CloudRepo handles the rest.
# Deploy a release version
mvn clean deploy
# Deploy a snapshot version
mvn clean deploy -DskipTests
Ready to host your Maven artifacts?
Start your 14-day free trial. No credit card required.