Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

apply plugin: 'java'
apply plugin: 'maven'

group = 'in.shop2020'
version = '1.0-SNAPSHOT'

description = """Thrift Generated Java Beans"""

sourceCompatibility = 1.6
targetCompatibility = 1.6



repositories {
        
     maven { url "http://repo.maven.apache.org/maven2" }
        mavenLocal()
}
dependencies {
    compile(group: 'org.apache.thrift', name: 'libthrift', version:'0.7.0') {
exclude(module: 'commons-codec')
    }
    compile group: 'readonly.slf4j', name: 'slf4j-api', version:'1.5.8'
    compile group: 'readonly.slf4j', name: 'slf4j-simple', version:'1.5.8'
}