我有一个小开源库的分支,我正在github上工作。我希望通过maven让其他开发人员可以使用它,但我不想运行自己的Nexus服务器,而且因为它是一个分支,所以我不能轻松地将它部署到oss.sonatype.org。
我想做的是将它部署到github,以便其他人可以使用maven访问它。最好的方法是什么?
我有一个小开源库的分支,我正在github上工作。我希望通过maven让其他开发人员可以使用它,但我不想运行自己的Nexus服务器,而且因为它是一个分支,所以我不能轻松地将它部署到oss.sonatype.org。
我想做的是将它部署到github,以便其他人可以使用maven访问它。最好的方法是什么?
当前回答
我来这里是为了做同样的事情,免费托管我的Maven存储库,但经过更多的研究,我最终来到了这里: https://jfrog.com/start-free/
设置非常简单,有一个很好的免费层,这将在可预见的未来为我服务,并有额外的(付费)升级,在未来很可能会派上用场。
到目前为止,我确实非常满意!
其他回答
我想添加另一个替代方案,一个我最近一直在做的Gradle插件:magik。
基本上,它允许直接在github存储库上发布,作为一个maven存储库。
我所能找到的最佳解决方案包括以下步骤:
创建一个名为mvn-repo的分支来托管您的maven工件。 使用github site-maven-plugin将你的工件推送到github。 配置maven以使用远程mvn-repo作为maven存储库。
使用这种方法有几个好处:
Maven工件在一个叫做mvn-repo的独立分支中与你的源代码保持分离,就像github页面被保存在一个叫做gh-pages的独立分支中(如果你使用github页面) 与其他一些建议的解决方案不同,如果您正在使用gh-page,它不会与它们冲突。 与部署目标自然地结合在一起,因此不需要学习新的maven命令。像往常一样使用mvn deploy即可
将工件部署到远程maven repo的典型方法是使用mvn deploy,因此让我们为这个解决方案修补该机制。
首先,告诉maven将工件部署到目标目录内的临时登台位置。把这个添加到你的pom.xml:
<distributionManagement>
<repository>
<id>internal.repo</id>
<name>Temporary Staging Repository</name>
<url>file://${project.build.directory}/mvn-repo</url>
</repository>
</distributionManagement>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
<configuration>
<altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository>
</configuration>
</plugin>
</plugins>
现在尝试运行mvn clean deploy。您将看到它将maven存储库部署到target/mvn-repo。下一步是让它将该目录上传到GitHub。
将您的身份验证信息添加到~/.m2/settings.xml,以便github site-maven-plugin可以推送到github:
<!-- NOTE: MAKE SURE THAT settings.xml IS NOT WORLD READABLE! -->
<settings>
<servers>
<server>
<id>github</id>
<username>YOUR-USERNAME</username>
<password>YOUR-PASSWORD</password>
</server>
</servers>
</settings>
(如上所述,请确保chmod 700 settings.xml,以确保没有人可以读取文件中的密码。如果有人知道如何让site-maven-plugin提示输入密码,而不是要求在配置文件中输入密码,请告诉我。)
然后告诉GitHub site-maven-plugin关于你刚刚配置的新服务器,添加以下到你的pom:
<properties>
<!-- github server corresponds to entry in ~/.m2/settings.xml -->
<github.global.server>github</github.global.server>
</properties>
最后,配置site-maven-plugin从你的临时临时回购上传到你的mvn-repo分支在Github上:
<build>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<version>0.11</version>
<configuration>
<message>Maven artifacts for ${project.version}</message> <!-- git commit message -->
<noJekyll>true</noJekyll> <!-- disable webpage processing -->
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory> <!-- matches distribution management repository url above -->
<branch>refs/heads/mvn-repo</branch> <!-- remote branch name -->
<includes><include>**/*</include></includes>
<repositoryName>YOUR-REPOSITORY-NAME</repositoryName> <!-- github repo name -->
<repositoryOwner>YOUR-GITHUB-USERNAME</repositoryOwner> <!-- github username -->
</configuration>
<executions>
<!-- run site-maven-plugin's 'site' target as part of the build's normal 'deploy' phase -->
<execution>
<goals>
<goal>site</goal>
</goals>
<phase>deploy</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
mvn-repo分支不需要存在,它将为您创建。
现在再次运行mvn clean deploy。您应该看到maven-deploy-plugin将文件“上载”到目标目录中的本地staging存储库,然后site-maven-plugin提交这些文件并将它们推送到服务器。
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building DaoCore 1.3-SNAPSHOT
[INFO] ------------------------------------------------------------------------
...
[INFO] --- maven-deploy-plugin:2.5:deploy (default-deploy) @ greendao ---
Uploaded: file:///Users/mike/Projects/greendao-emmby/DaoCore/target/mvn-repo/com/greendao-orm/greendao/1.3-SNAPSHOT/greendao-1.3-20121223.182256-3.jar (77 KB at 2936.9 KB/sec)
Uploaded: file:///Users/mike/Projects/greendao-emmby/DaoCore/target/mvn-repo/com/greendao-orm/greendao/1.3-SNAPSHOT/greendao-1.3-20121223.182256-3.pom (3 KB at 1402.3 KB/sec)
Uploaded: file:///Users/mike/Projects/greendao-emmby/DaoCore/target/mvn-repo/com/greendao-orm/greendao/1.3-SNAPSHOT/maven-metadata.xml (768 B at 150.0 KB/sec)
Uploaded: file:///Users/mike/Projects/greendao-emmby/DaoCore/target/mvn-repo/com/greendao-orm/greendao/maven-metadata.xml (282 B at 91.8 KB/sec)
[INFO]
[INFO] --- site-maven-plugin:0.7:site (default) @ greendao ---
[INFO] Creating 24 blobs
[INFO] Creating tree with 25 blob entries
[INFO] Creating commit with SHA-1: 0b8444e487a8acf9caabe7ec18a4e9cff4964809
[INFO] Updating reference refs/heads/mvn-repo from ab7afb9a228bf33d9e04db39d178f96a7a225593 to 0b8444e487a8acf9caabe7ec18a4e9cff4964809
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 8.595s
[INFO] Finished at: Sun Dec 23 11:23:03 MST 2012
[INFO] Final Memory: 9M/81M
[INFO] ------------------------------------------------------------------------
在浏览器中访问github.com,选择mvn-repo分支,并验证所有二进制文件现在都在那里。
恭喜你!
现在,只需运行mvn clean deploy,就可以将maven构件部署到穷人的公共回购。
您还需要执行另一个步骤,即配置依赖于您的pom的任何poms,以了解存储库的位置。添加以下片段到任何项目的pom,这取决于你的项目:
<repositories>
<repository>
<id>YOUR-PROJECT-NAME-mvn-repo</id>
<url>https://github.com/YOUR-USERNAME/YOUR-PROJECT-NAME/raw/mvn-repo/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
现在,任何需要jar文件的项目都会自动从github maven存储库下载它们。
编辑:以避免评论中提到的问题('创建提交错误:无效请求。对于'properties/name', nil不是一个字符串。'),确保你在github上的配置文件中声明了一个名字。
作为一种替代方案,Bintray提供maven存储库的免费托管。如果您绝对不想重命名groupId,这可能是Sonatype OSS和Maven Central的一个很好的替代方案。但是,请至少努力将您的更改集成到上游,或者重命名并发布到Central。这样别人用你的叉子就方便多了。
自2019年以来,你现在可以使用名为Github包注册表的新功能。
基本上这个过程是:
从github设置生成一个新的个人访问令牌 在settings.xml中添加存储库和令牌信息 部署使用 mvn deploy -Dregistry=https://maven.pkg.github.com/yourusername -Dtoken=yor_token
另一种选择是使用任何支持webdav的虚拟主机。当然,你需要一些空间来放置它,但是它的设置很简单,是运行一个完整的nexus服务器的一个很好的替代方案。
将此添加到构建部分
<extensions>
<extension>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<groupId>org.apache.maven.wagon</groupId>
<version>2.2</version>
</extension>
</extensions>
向distributionManagement部分添加这样的内容
<repository>
<id>release.repo</id>
<url>dav:http://repo.jillesvangurp.com/releases/</url>
</repository>
最后,确保在settings.xml中设置了存储库访问
将此添加到服务器部分
<server>
<id>release.repo</id>
<username>xxxx</username>
<password>xxxx</password>
</server>
以及存储库部分的定义
<repository>
<id>release.repo</id>
<url>http://repo.jillesvangurp.com/releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
最后,如果你有任何标准的php主机,你可以使用像sabredav这样的东西来添加webdav功能。
优点:您有自己的maven存储库 缺点:你在nexus中没有任何管理能力;你需要在某个地方安装一些webdav