Switch to unified view

a b/personalassistantcommons/PersonalAssistantShared/build.gradle
1
apply plugin: 'com.android.library'
2
3
android {
4
    compileSdkVersion 23
5
    buildToolsVersion "21.1.2"
6
7
    defaultConfig {
8
        minSdkVersion 18
9
        targetSdkVersion 23
10
        versionCode 1
11
        versionName "1.0"
12
    }
13
    buildTypes {
14
        release {
15
            minifyEnabled false
16
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
17
        }
18
    }
19
20
    lintOptions {
21
        abortOnError false
22
    }
23
}
24
25
dependencies {
26
    compile fileTree(dir: 'libs', include: ['*.jar'])
27
    compile 'com.android.support:appcompat-v7:23.1.1'
28
    compile 'javax.ws.rs:jsr311-api:0.11'
29
    compile 'org.codehaus.jackson:jackson-mapper-asl:1.9.0'
30
    compile 'org.springframework:spring-beans:3.0.5.RELEASE'
31
    compile 'org.springframework.data:spring-data-mongodb:1.8.2.RELEASE'
32
    compile 'com.fasterxml.jackson.core:jackson-core:2.7.0'
33
    compile 'com.google.code.gson:gson:2.2.4'
34
}
35
36
37
repositories{
38
    flatDir{
39
        dirs 'libs'
40
    }
41
}