對於前端開發者來說,相信 NPM (Node Package Manager) 大家一定都不陌生,它是一個線上 JavaScript 套件庫,使用者可以根據自己的需求,下載套件來使用。
解決 Unable to access ‘git/attributes’
在Server端部署code時git clone跑出:
Unable to access ‘git/attributes’
閱讀全文〈解決 Unable to access ‘git/attributes’〉
SpringBoot Maven跳過測試:skipTests VS maven.test.skip
在基於SpringBoot開發時有時只是為了build出Jar or War 但卻跑到測試,而測試又跟DB有關時,會造成很多困擾,所以可以使用<skipTests>true</skipTests>
跟<maven.test.skip>true</maven.test.skip>
跳過測試單元,可以使用以下方式