“A Groovy-based build system that uses Ant tasks, but no XML.”
Gant เป็นเครื่องมือประกอบสร้างซอฟต์แวร์ (build system) ที่ใช้ Ant ทำงาน และใช้ภาษา Groovy กำหนดค่าต่าง ๆ (แทนที่จะใช้ภาษา XML)
ตัวอย่าง (จากเว็บไซต์ Gant):
includeTargets << gant.targets.Clean
cleanPattern << [ '**/*~' , '**/*.bak' ]
cleanDirectory << 'build'
target ( 'default' : 'The default target.' ) {
println ( 'Default' )
depends ( clean )
Ant.echo ( message : 'A default message from Ant.' )
otherStuff ( )
}
target ( otherStuff : 'Other stuff' ) {
println ( 'OtherStuff' )
Ant.echo ( message : 'Another message from Ant.' )
clean ( )
}
แนวการพัฒนาของ Groovy/Grails อย่างหนึ่งที่ต่างจาก Ruby/Rails ที่พอสังเกตได้ก็คือ Groovy/Grails จะพยายามใช้/หรือทำงานร่วมกับเครื่องมือ/ไลบรารีที่มีอยู่แล้ว เช่น Jetty, Hibernate หรือกรณี Ant ในที่นี้ (ซึ่งแต่ละแนวก็มีข้อดีข้อด้อยต่างกัน)
1 comment:
มีแบบ Maven เปล่า?
Post a Comment