diff options
Diffstat (limited to 'juick-xmpp-wip/build.gradle')
-rw-r--r-- | juick-xmpp-wip/build.gradle | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/juick-xmpp-wip/build.gradle b/juick-xmpp-wip/build.gradle index cc69ed34..ad49cf16 100644 --- a/juick-xmpp-wip/build.gradle +++ b/juick-xmpp-wip/build.gradle @@ -1,11 +1,11 @@ apply plugin: 'java' apply plugin: 'war' -apply plugin: 'org.akhikhl.gretty' +apply plugin: 'org.springframework.boot' +apply plugin: 'io.spring.dependency-management' dependencies { compile project(':juick-server-jdbc') compile project(':juick-server-web') - compile project(':juick-server') testCompile project(path: ':juick-core', configuration: 'testArtifacts') testCompile project(path: ':juick-server', configuration: 'testArtifacts') @@ -15,12 +15,6 @@ dependencies { compileJava.options.encoding = 'UTF-8' -gretty { - httpPort = 8080 - contextPath = '/router' - servletContainer = 'tomcat8' -} - configurations { all*.exclude module: 'commons-logging' } |