Is there any free online private maven2 or maven3 repository? So that team can access the repository from various region.
相关问题
- How to resolve Maven exec plugin: classpath too lo
- Maven: How to read the Parent POM version
- Upload linux binary file to maven repository
- Maven Repositories for Spring Roo
- Is there a maven plugin that can diff files and ou
相关文章
- Maven directory structure
- Passing the Maven Debug Flag from Hudson
- Find Java options used by Maven
- Send Maven output to console and log file using po
- How to keep Stored Procedures and other scripts in
- Maven deploy hangs while downloading maven_metadat
- Jacoco code coverage show 0% coverage on Jenkins
- How do you centralize the Entity Framework data co
Update: the Deveo has been acquired by Perforce, see this link
Have you tried Deveo, I am using this cloud service and has 1G storage for free. You can deploy the Maven repository on it.
I just found a free repo for personal projects. Might not be suitable for team work and/or professional use though. Note that it seems to be from Russia. I am not connected in any kind to that project so I have no idea about the privacy of the data posted there. But it seems to work ok.
https://mymavenrepo.com
I have not tried but there is also
https://bintray.com/
This one might have a better reputation :)
we can use dropbox for online maven repository. But it is not completely private. you can use it if it gives you enough privacy.
This is the instruction to create free maven online maven repository on dropbox
mvn deploy -DskipTests=true -DaltDeploymentRepository=dropbox::default::file:///C:/Users/Lakshman/Dropbox/Public/repository
you can use this in your pom file to the above task
if you have sync your local folder with dropbox it will automatically upload artifacts to online repository. you can get the link by login to Dropbox and go to public folder and click
copy public link
.This solution got from here and referenced this also.
For this purpose you could use a SVN repository. Some of them are available for private usage for free. Take a look on Maven: Commit single artifact to svn repository
If you use github, you could use a private github project as your maven repository. There are instruction on how to publish your maven artifacts to github here: https://stackoverflow.com/a/14013645/82156
I recently wrote a lightweight Google App-Engine application to host my private repositories, backed by Google Cloud Storage (which is multi-regional per default):
https://github.com/renaudcerrato/appengine-maven-repository
Thanks to Google App-Engine free quotas, and depending on the scale needed, you won't have to pay anything.