Rev 22531 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
apply plugin: 'java'apply plugin: 'maven'apply plugin: 'war'group = 'com.profitmandi'version = '0.0.1-SNAPSHOT'description = """profitmandi-web"""sourceCompatibility = 1.8targetCompatibility = 1.8repositories {maven { url "http://repo.maven.apache.org/maven2" }mavenCentral()}dependencies {compile project (':profitmandi-common')compile project (':profitmandi-dao')compile (group: 'io.springfox', name: 'springfox-swagger-ui', version:'2.5.0'){exclude(module: 'slf4j-api')}compile (group: 'io.springfox', name: 'springfox-swagger2', version:'2.5.0'){exclude(module: 'slf4j-api')}compile group: 'com.eclipsesource.minimal-json', name: 'minimal-json', version:'0.9.4'compile group: 'com.google.code.gson', name: 'gson', version:'2.8.0'compile (group: 'eu.medsea.mimeutil', name: 'mime-util', version:'2.1.1'){exclude(module: 'slf4j-api')exclude(module: 'slf4j-log4j12')exclude(module: 'log4j')}}