Introduction
因為公司人數越來越多,開始有人和我們搶會議室;為了節省我們時間,我開發了一個自動訂會議室的工具。以往我都是透過ant去包裝軟體,這次嘗試用gradle去包裝這個小工具。
我的專案結構如下,這是使用Eclipse建出來的Gradle專案:
我的目標如下:
- 包裝為zip。
- config與webdrivers直接複製到zip中。
- scripts中的內容複製到zip root。
- 將編譯出來的東西包為jar並連同相依項目放到libs中。
How to?
我的gradle設定給大家參考:
apply plugin: 'java-library' compileJava { options.encoding = 'UTF-8' } repositories { jcenter() } dependencies { compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '2.53.0' compile group: 'org.seleniumhq.selenium', name: 'selenium-server-standalone', version: '2.53.0' compile 'log4j:log4j:1.2.17' runtime 'org.slf4j:slf4j-log4j12:1.6.6' compile 'org.slf4j:slf4j-api:1.7+' testImplementation 'junit:junit:4.12' } task buildZip(type: Zip) { from processResources into('libs') { from configurations.runtimeClasspath from configurations.runtime.allArtifacts.files } into('config') { from 'config' } into('') { from 'scripts' } into('webdrivers') { from 'webdrivers' } }
因為Eclipse建出來的專案已經把Gradle相關的東西都放在專案目錄下,所以你可以直接切到專案目錄下執行以下指令:
gradlew buildZip
建置結果如下:
留言
張貼留言