Subversion Repositories SmartDukaan

Rev

Rev 22531 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
22427 ashik.ali 1
apply plugin: 'java'
2
apply plugin: 'maven'
3
apply plugin: 'war'
4
 
5
group = 'com.profitmandi'
6
version = '0.0.1-SNAPSHOT'
7
 
8
description = """profitmandi-web"""
9
 
10
sourceCompatibility = 1.8
11
targetCompatibility = 1.8
12
 
13
 
14
 
15
repositories {
16
 
17
     maven { url "http://repo.maven.apache.org/maven2" }
18
     mavenCentral()
19
 
20
}
21
dependencies {
22
	compile project (':profitmandi-common')
23
    compile project (':profitmandi-dao')
24
    compile (group: 'io.springfox', name: 'springfox-swagger-ui', version:'2.5.0'){ 
25
    	exclude(module: 'slf4j-api')
26
    }
27
    compile (group: 'io.springfox', name: 'springfox-swagger2', version:'2.5.0'){
28
    	exclude(module: 'slf4j-api')
29
    }
30
    compile group: 'com.eclipsesource.minimal-json', name: 'minimal-json', version:'0.9.4'
31
    compile group: 'com.google.code.gson', name: 'gson', version:'2.8.0'
32
    compile (group: 'eu.medsea.mimeutil', name: 'mime-util', version:'2.1.1'){ 
33
    	exclude(module: 'slf4j-api')
34
    	exclude(module: 'slf4j-log4j12')
35
    	exclude(module: 'log4j')
36
    }
37
}