Subversion Repositories SmartDukaan

Rev

Rev 22428 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
22428 ashik.ali 1
apply plugin: 'java'
2
apply plugin: 'maven'
3
 
4
group = 'in.shop2020'
5
version = '1.0-SNAPSHOT'
6
 
7
description = """Thrift Generated Java Beans"""
8
 
9
sourceCompatibility = 1.6
10
targetCompatibility = 1.6
11
 
12
 
13
 
14
repositories {
15
 
28498 amit.gupta 16
     maven { url "https://repo.maven.apache.org/maven2" }
22428 ashik.ali 17
	mavenLocal()
18
}
19
dependencies {
20
    compile(group: 'org.apache.thrift', name: 'libthrift', version:'0.7.0') {
21
exclude(module: 'commons-codec')
22
    }
28498 amit.gupta 23
    compile group: 'org.slf4j', name: 'slf4j-api', version:'1.5.8'
24
    compile group: 'org.slf4j', name: 'slf4j-simple', version:'1.5.8'
22428 ashik.ali 25
}