Skip to content

Commit

Permalink
clean up and 5.12.1 ready to release
Browse files Browse the repository at this point in the history
  • Loading branch information
limcheekin committed Jun 3, 2013
1 parent 0435a41 commit 35b1ff4
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 32 deletions.
11 changes: 8 additions & 3 deletions ActivitiGrailsPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import org.grails.activiti.serializable.SerializableVariableType
*/
class ActivitiGrailsPlugin {
// the plugin version
def version = "5.12"
def version = "5.12.1"
// the version or versions of Grails the plugin is designed for
def grailsVersion = "2.0.0 > *"
// the other plugins this plugin depends on
Expand All @@ -56,8 +56,13 @@ class ActivitiGrailsPlugin {

// URL to the plugin's documentation
def documentation = "http://grails.org/plugin/activiti"
def confWatchedResources = [CH.config.activiti.deploymentResources, "file:./grails-app/controllers/**/*.groovy"].flatten()
def defaultWatchedResources = [ActivitiConstants.DEFAULT_DEPLOYMENT_RESOURCES, "file:./grails-app/controllers/**/*.groovy"].flatten()

def license = "APACHE"
def issueManagement = [system: 'GitHub', url: 'https://github.com/limcheekin/activiti/issues']
def scm = [url: 'https://github.com/limcheekin/activiti']

def confWatchedResources = [CH.config.activiti.deploymentResources, "file:./grails-app/controllers/**/*.groovy"].flatten()
def defaultWatchedResources = [ActivitiConstants.DEFAULT_DEPLOYMENT_RESOURCES, "file:./grails-app/controllers/**/*.groovy"].flatten()
def watchedResources = confWatchedResources?:defaultWatchedResources

String sessionUsernameKey = CH.config.activiti.sessionUsernameKey?:ActivitiConstants.DEFAULT_SESSION_USERNAME_KEY
Expand Down
8 changes: 4 additions & 4 deletions application.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Grails Metadata file
#Wed Jul 11 17:21:09 GMT+08:00 2012
app.grails.version=2.1.0
#Sun Jun 02 13:55:15 SGT 2013
app.grails.version=2.2.2
app.name=activiti
plugins.hibernate=2.1.0
plugins.hibernate=2.2.2
plugins.release=1.0.0
plugins.tomcat=2.1.0
plugins.tomcat=2.2.2
34 changes: 9 additions & 25 deletions grails-app/conf/BuildConfig.groovy
Original file line number Diff line number Diff line change
@@ -1,42 +1,26 @@
grails.project.class.dir = "target/classes"
grails.project.test.class.dir = "target/test-classes"
grails.project.test.reports.dir = "target/test-reports"
//grails.project.war.file = "target/${appName}-${appVersion}.war"
grails.project.work.dir = 'target'

grails.project.dependency.resolution = {
// inherit Grails' default dependencies
inherits("global") {
// uncomment to disable ehcache
// excludes 'ehcache'
}
inherits 'global'
log "warn" // log level of Ivy resolver, either 'error', 'warn', 'info', 'debug' or 'verbose'
repositories {
grailsPlugins()
grailsHome()
grailsCentral()
mavenRepo name: "Activiti", root: "https://maven.alfresco.com/nexus/content/groups/public"

// uncomment the below to enable remote dependency resolution
// from public Maven repositories
//mavenLocal()
//mavenCentral()
//mavenRepo "http://snapshots.repository.codehaus.org"
//mavenRepo "http://repository.codehaus.org"
//mavenRepo "http://download.java.net/maven/2/"
//mavenRepo "http://repository.jboss.com/maven2/"
mavenRepo name: "Activiti", root: "https://maven.alfresco.com/nexus/content/groups/public"
}
dependencies {
// specify dependencies here under either 'build', 'compile', 'runtime', 'test' or 'provided' scopes eg.

// runtime 'mysql:mysql-connector-java:5.1.5'
compile ('org.activiti:activiti-engine:5.12') {
compile ('org.activiti:activiti-engine:5.12.1') {
excludes 'livetribe-jsr223'
}
runtime 'org.activiti:activiti-spring:5.12'
runtime 'org.activiti:activiti-spring:5.12.1'
runtime 'javax.mail:mail:1.4.1'
test 'org.subethamail:subethasmtp-smtp:1.2'
test 'org.subethamail:subethasmtp-wiser:1.2'
}
plugins {
build ":release:2.0.3"
build ':release:2.2.1', ':rest-client-builder:1.0.3', {
export = false
}
}
}

0 comments on commit 35b1ff4

Please sign in to comment.