Skip to content

Commit

Permalink
Bump to Swing 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Oct 20, 2012
1 parent 36d1aa5 commit d76c6c8
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 31 deletions.
2 changes: 1 addition & 1 deletion MiglayoutGriffonAddon.java
Expand Up @@ -27,4 +27,4 @@ public MiglayoutGriffonAddon() {
super(ApplicationHolder.getApplication());
factories.put("migLayout", new LayoutFactory(MigLayout.class));
}
}
}
6 changes: 3 additions & 3 deletions MiglayoutGriffonPlugin.groovy
Expand Up @@ -19,11 +19,11 @@
*/
class MiglayoutGriffonPlugin {
// the plugin version
String version = '0.4'
String version = '1.0.0'
// the version or versions of Griffon the plugin is designed for
String griffonVersion = '0.9.5 > *'
String griffonVersion = '1.0.0 > *'
// the other plugins this plugin depends on
Map dependsOn = [swing: '0.9.5']
Map dependsOn = [swing: '1.0.0']
// resources that are included in plugin packaging
List pluginIncludes = []
// the plugin license
Expand Down
4 changes: 2 additions & 2 deletions application.properties
@@ -1,3 +1,3 @@
app.griffon.version=0.9.5-rc2
app.griffon.version=1.0.0
app.name=miglayout
plugins.swing=0.9.5
plugins.swing=1.0.0
25 changes: 0 additions & 25 deletions griffon-app/conf/BuildConfig.groovy
@@ -1,41 +1,16 @@
griffon.project.dependency.resolution = {
// implicit variables
// pluginName: plugin's name
// pluginVersion: plugin's version
// pluginDirPath: plugin's install path
// griffonVersion: current Griffon version
// groovyVersion: bundled groovy
// springVersion: bundled Spring
// antVertsion: bundled Ant
// slf4jVersion: bundled Slf4j

// inherit Griffon' default dependencies
inherits "global"
log "warn"
repositories {
griffonHome()
mavenCentral()

// pluginDirPath is only available when installed
// String basePath = pluginDirPath? "${pluginDirPath}/" : ''
// flatDir name: "${pluginName}LibDir", dirs: ["${basePath}lib"]
}
dependencies {
compile 'com.miglayout:miglayout-swing:4.2'
}
}

griffon {
doc {
logo = '<a href="http://griffon.codehaus.org" target="_blank"><img alt="The Griffon Framework" src="../img/griffon.png" border="0"/></a>'
sponsorLogo = "<br/>"
footer = "<br/><br/>Made with Griffon (@griffon.version@)"
}
}

log4j = {
// Example of changing the log pattern for the default console
// appender:
appenders {
console name: 'stdout', layout: pattern(conversionPattern: '%d [%t] %-5p %c - %m%n')
}
Expand Down

0 comments on commit d76c6c8

Please sign in to comment.