您好,登錄后才能下訂單哦!
近期,我們在GitHub上開源了微服務任務調度框架SIA-TASK,82天,收獲了1000+個star!由于這是SIA團隊第一次開源項目,開源的相關工作,團隊之前并沒有太多的經驗,因此我們特別整理了本次開源的各種記錄事項,希望給今后開源的項目做參考。
下面我們逐個步驟進行闡述。
在開源項目的開發過程中要注意以下幾點:
首先,要給自己的項目取一個合適的名字,取名規則這里不再贅述,需要強調的一點是:項目名稱不能與GitHub上已開源過的項目名稱相同。
其次,選擇合適的編程語言。
再次,編碼過程中要注意代碼的規范。
最后要說的就是開源協議的選擇了,目前最流行的開源協議有以下六種:GPL、BSD、MIT、Mozilla、Apache和LGPL。
不同的開源協議之間的差別還是挺大的,具體如何選擇,可以參考 一張圖看懂開源協議(https://blog.csdn.net/cwt19902010/article/details/53736746),如果這些常用的開源協議都不適合你的項目,你也可以自己寫一個自己的開源協議。
為了更方便查看開源協議選擇圖,參考圖如下
以Apache License Version 2.0協議為例,比較常用協議與Apache協議沖突情況,沖突圖如下:
項目開發完成之后,需要梳理出項目中使用到的協議(包含項目引用的組件中用到的協議),此處推薦使用maven許可證插件。插件配置參見 License Maven Plugin(https://www.mojohaus.org/license-maven-plugin/),maven許可證插件在主pom中配置示例如下(此處開源協議采用Apache 2.0)
<!--開源協議采用Apache 2.0協議--> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> <distribution>repo</distribution> </license> </licenses> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> <version>1.13</version> <configuration> <!-- config for license:aggregate-add-third-party --> <outputDirectory>${main.basedir}</outputDirectory> <thirdPartyFilename>LICENSE-3RD-PARTY</thirdPartyFilename> <fileTemplate>/org/codehaus/mojo/license/third-party-file-groupByLicense.ftl</fileTemplate> <useMissingFile>true</useMissingFile> <missingFile>${main.basedir}/LICENSE-3RD-PARTY.properties</missingFile> <aggregateMissingLicensesFile>${main.basedir}/LICENSE-3RD-PARTY.properties</aggregateMissingLicensesFile> <licenseMerges> <licenseMerge>Apache 2.0|ASL, version 2|http://www.apache.org/licenses/LICENSE-2.0.txt|http://asm.ow2.org/license.html|The Apache License, Version 2.0|Apache License|Apache License Version 2|Apache License Version 2.0|Apache Software License - Version 2.0|Apache 2.0 License|Apache License 2.0|ASL|Apache 2|Apache-2.0|the Apache License, ASL Version 2.0|The Apache Software License, Version 2.0|Apache License, Version 2.0|Apache Public License 2.0</licenseMerge> <licenseMerge>BSD|The BSD 3-Clause License|The BSD License|Modified BSD License|New BSD License|New BSD license|Two-clause BSD-style license|BSD licence|BSD New|The New BSD License|BSD 3-Clause|BSD 3-clause</licenseMerge> <licenseMerge>MIT|MIT License|The MIT License</licenseMerge> <licenseMerge>LGPL|LGPL, version 2.1|GNU Library or Lesser General Public License (LGPL) V2.1|GNU Lesser General Public License (LGPL), Version 2.1|GNU Lesser General Public License, Version 2.1|LGPL 2.1</licenseMerge> <licenseMerge>CDDL|CDDL+GPL|CDDL+GPL License|CDDL + GPLv2 with classpath exception|CDDL License|CDDL 1.0|CDDL 1.1|COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0|Common Development and Distribution License (CDDL) v1.0</licenseMerge> <licenseMerge>EPL|Eclipse Public License - Version 1.0</licenseMerge> <licenseMerge>GPL|GPL2 w/ CPE|GPLv2+CE|GNU General Public Library</licenseMerge> <licenseMerge>MPL|MPL 1.1</licenseMerge> <licenseMerge>Public Domain</licenseMerge> <licenseMerge>Common Public License|Common Public License Version 1.0</licenseMerge> <licenseMerge>CC0|CC0 1.0 Universal|Public Domain, per Creative Commons CC0</licenseMerge> <licenseMerge>Unknown License|Unknown license</licenseMerge> </licenseMerges> <!-- config for license:aggregate-download-licenses --> <aggregateDownloadLicenses.executeOnlyOnRootModule>true</aggregateDownloadLicenses.executeOnlyOnRootModule> <!--<licensesConfigFile>${main.basedir}/lic/config/licenses.xml</licensesConfigFile>--> <licensesOutputFile>${main.basedir}/lic/licenses.xml</licensesOutputFile> <licensesOutputDirectory>${main.basedir}/lic/licenses/</licensesOutputDirectory> <!-- config for license:update-file-header --> <licenseName>apache_v2</licenseName> <inceptionYear>2019</inceptionYear> <organizationName>sia</organizationName> <projectName>task</projectName> <roots> <root>src/main/java</root> <root>src/test/java</root> </roots> <includes> <include>**/*.java</include> <include>**/*.xml</include> <include>**/*.sh</include> <include>**/*.py</include> <include>**/*.properties</include> <include>**/*.sql</include> <include>**/*.html</include> <include>**/*.less</include> <include>**/*.css</include> <include>**/*.js</include> <include>**/*.json</include> </includes> <canUpdateCopyright>true</canUpdateCopyright> <canUpdateDescription>true</canUpdateDescription> <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage> <emptyLineAfterHeader>true</emptyLineAfterHeader> <processStartTag><<</processStartTag> <processEndTag>>></processEndTag> <sectionDelimiter>==</sectionDelimiter> <!-- config for mvn license:update-project-license --> <licenseFile>${main.basedir}/LICENSE</licenseFile> </configuration> </plugin> <plugin> <groupId>org.jasig.maven</groupId> <artifactId>maven-notice-plugin</artifactId> <version>1.0.6.1</version> <configuration> <generateChildNotices>false</generateChildNotices> <noticeTemplate>https://source.jasig.org/licenses/NOTICE.template</noticeTemplate> <licenseMapping> <param>https://source.jasig.org/licenses/license-mappings.xml</param> </licenseMapping> </configuration> </plugin> </plugins>
配置完成之后,執行如下命令即可生成相應的協議到對應的文件,命令如下:
#### Updates (or creates) the main project license file according to the license defined in the licenseName parameter. `mvn license:update-project-license` #### Generates a file containing a list of all dependencies and their licenses for a multi-module build. `mvn license:aggregate-add-third-party` #### Downloads the license files associated with each dependency for a multi-modules build. `mvn license:aggregate-download-licenses` #### Generate NOTICE? `mvn notice:generate`
項目開源時,需要在源文件的頂部添加一個保護許可,修改、檢查、刪除源文件頭部保護許可命令如下:
#### how to generate/update source code header? ## Updates the license header of the current project source files. mvn license:update-file-header ## Checks the license header of the current project source files. mvn license:check-file-header ## Remove any license header of the current project source files. mvn license:remove-file-header
執行完上述命令之后,會生成幾個協議文件,其中有兩個關鍵的文件:
LICENSE文件:存放當前開源項目中用到的開源協議信息。 </br> LICENSE-3RD-PARTY文件:組件使用到的協議。</br>
在LICENSE-3RD-PARTY文件中查看組件使用的協議,參考前面介紹的各協議沖突情況,查看看組件中用到的協議是否與當前開源項目選擇的開源協議有沖突,如果有沖突,需要替換掉協議沖突的接口。
安全掃描是項目開源流程中必不可少的一步,安全掃描關注的點主要有以下幾個:
備注:安全掃描工作由安全部·安全服務團隊的同事負責完成,項目開發完成之后,可聯系安全服務團隊的同事進行代碼安全掃描工作。
README文檔相當于開源項目的一個門面,如果README文檔寫得好,能夠讓用戶更了解開源項目的功能,減少用戶的使用成本。可以說README文檔寫得好的開源項目不一定是好的開源項目,但是好的開源項目的README文檔寫得一定好。
下面簡單介紹下README文檔的編寫規范。綜合GitHub上很多大型開源項目的README文檔,個人認為READEME文檔主要由以下幾部分組成:
1)項目介紹
項目介紹是為了讓別人快速了解項目。主要內容包括項目背景、項目簡介。
2)項目架構
項目架構主要介紹項目的實現方式,可以讓用戶更了解項目的實現原理。
3)項目集成方式
項目集成方式即項目開發指南,可以列出項目的部署方式,或者是jar包的使用方式。
4)項目使用指南
項目使用指南也就是告訴用戶怎么使用項目。最好是附上每一步的使用截圖信息,這樣能減少后期跟用戶之間的溝通成本。
5)版本說明
此處需要告訴用戶使用哪個版本更穩定。
6)版權說明
版權信息可以用于作者的維權,保護作者版本信息的合法權益。
7)項目交流方式
項目交流方式部分可以留下開源作者或者是組織的微信、微博、郵箱等聯系方式,方便用戶與開源作者進一步技術溝通。
GitHub上開源的項目需要有個版本號,版本格式為:主版本號.次版本號.修訂號,版本號遞增規則如下:
先行版本號及版本編譯元數據可以加到“主版本號.次版本號.修訂號”的后面,作為延伸。
更形象的解釋如下:標準的版本號必須采用 X.Y.Z 的格式,其中 X、Y 和 Z 為非負的整數,且禁止在數字前方補零。X 是主版本號、Y 是次版本號、而 Z 為修訂號。每個元素必須以數值來遞增。例如:1.9.1 -> 1.10.0 -> 1.11.0。
備注:開源版本規范引自 GitHub命名規范:語義化版本2.0.0:https://semver.org/lang/zh-CN/
做完上述幾步的工作之后,我們就可以把項目上傳到GitHub上進行開源了。GitHub的使用網上有很多文章介紹,這里不再贅述,可以參考 在GitHub上參與開源項目日常流程:https://blog.csdn.net/five3/article/details/9307041
開源后期維護服務是開源項目時最容易被忽視的,為了讓用戶更好地使用開源項目,我們可以通過GitHub issue、微信答疑群、論壇、社區文章分享等互動形式做好開源后期服務工作。
GitHub上迭代開發流程如下:項目owner給項目開發者設置member權限,member用戶fork開源項目的資源成自己的資源,然后修改fork之后的資源,修改完成之后,提merge請求,只有項目owner才有權限merge。如何同步fork項目可參見如下文章 如何同步fork項目:https://blog.csdn.net/t111t/article/details/45894381
開源項目:
微服務任務調度框架 :https://github.com/siaorg/sia-task
微服務路由網關 :https://github.com/siaorg/sia-gateway
作者: 張麗君
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。