-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
clean up and 5.12.1 ready to release
- Loading branch information
1 parent
0435a41
commit 35b1ff4
Showing
3 changed files
with
21 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} |