Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions TomcatGrailsPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* limitations under the License.
*/
class TomcatGrailsPlugin {
def version = "7.0.70"
def version = "7.0.91"
def grailsVersion = "2.3 > *"
def scopes = [excludes: 'war']
def author = "Graeme Rocher"
Expand All @@ -22,7 +22,7 @@ class TomcatGrailsPlugin {
def description = 'Makes Tomcat 7.0 the default servlet container for Grails at development time.'
def documentation = "http://grails.org/plugin/tomcat"
def license = 'APACHE'
def organization = [name: 'Pivotal', url: 'http://www.gopivotal.com/oss']
def issueManagement = [system: 'JIRA', url: 'http://jira.grails.org/browse/GPTOMCAT']
def organization = [name: 'Grails', url: 'http://www.grails.org']
def issueManagement = [url: 'https://github.com/grails-plugins/grails-tomcat-plugin/issues']
def scm = [url: 'https://github.com/grails-plugins/grails-tomcat-plugin']
}
4 changes: 2 additions & 2 deletions grails-app/conf/BuildConfig.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ grails.project.dependency.resolution = {

dependencies {

String tomcatVersion = "7.0.70"
String tomcatVersion = "7.0.91"

runtime("org.apache.tomcat:tomcat-catalina-ant:$tomcatVersion") {
excludes 'org.apache.tomcat:tomcat-catalina', 'org.apache.tomcat:tomcat-coyote'
Expand All @@ -33,7 +33,7 @@ grails.project.dependency.resolution = {
runtime "org.apache.tomcat.embed:tomcat-embed-websocket:$tomcatVersion"

// needed for JSP compilation
runtime "org.eclipse.jdt.core.compiler:ecj:3.7.2"
runtime "org.eclipse.jdt.core.compiler:ecj:4.4.2"

// needed for JNDI
optional 'commons-dbcp:commons-dbcp:1.4'
Expand Down