Reorganizing into subprojects.
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.
This commit is contained in:
19
pit-swing/griffon-app/conf/Application.groovy
Normal file
19
pit-swing/griffon-app/conf/Application.groovy
Normal file
@ -0,0 +1,19 @@
|
||||
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'
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user