blob: 5002e9656203db7eb1b5c74462f006879d1b3dfe [file] [log] [blame]
scms {
excludes = ['templates/**', '**/.svn', '**/.git', '**/.gitignore', '**/*.iml', '**/*.ipr', '**/*.iws']
//global defaults:
//model {
// //the above template uses the year for a copyright notice:
// year = Calendar.getInstance.get(Calendar.YEAR)
//}
patterns {
'static/**/*.html' {
template = 'templates/none.vtl'
}
'**/*.html' {
template = 'templates/default.vtl'
model {
//the above template uses the year for a copyright notice:
year = Calendar.getInstance().get(Calendar.YEAR)
}
}
'**/*.md' {
template = 'templates/default.vtl'
model {
//the above template uses the year for a copyright notice:
year = Calendar.getInstance().get(Calendar.YEAR)
}
}
}
}