libpit - Personal Issue Tracker core libraries (Filter, Issue, Project, Category) pit-cli - Command Line Interface (CLI) to libpit pit-swing - Graphical, Swing interface to libpit (built using Griffon) libpit and pit-swing both build, though pit-swing is just an empty griffon poject.
20 lines
454 B
Groovy
20 lines
454 B
Groovy
application {
|
|
title='PitSwing'
|
|
startupGroups = ['pit-swing']
|
|
|
|
// Should Griffon exit when no Griffon created frames are showing?
|
|
autoShutdown = true
|
|
|
|
// If you want some non-standard application class, apply it here
|
|
//frameClass = 'javax.swing.JFrame'
|
|
}
|
|
mvcGroups {
|
|
// MVC Group for "pit-swing"
|
|
'pit-swing' {
|
|
model = 'PitSwingModel'
|
|
controller = 'PitSwingController'
|
|
view = 'PitSwingView'
|
|
}
|
|
|
|
}
|