Skip to content

Instantly share code, notes, and snippets.

@maslick
Last active January 5, 2017 08:26
Show Gist options
  • Save maslick/5f1f461fed6c95ee4883434e858d238a to your computer and use it in GitHub Desktop.
Save maslick/5f1f461fed6c95ee4883434e858d238a to your computer and use it in GitHub Desktop.
common gradle libs
// lombok
compile('org.projectlombok:lombok:1.16.12')
provided("org.projectlombok:lombok:1.16.12")
// lorem
compile('com.thedeanda:lorem:2.1')
// springboot
buildscript {
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.2.RELEASE")
}
}
apply plugin: 'org.springframework.boot'
// springboot websockets
compile('org.springframework.boot:spring-boot-starter-websocket')
// butterknife
compile 'com.jakewharton:butterknife:8.4.0'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
// mosby
compile 'com.hannesdorfmann.mosby:mvp:2.0.1'
// java8 android
defaultConfig {
jackOptions {
enabled true
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
// rxjava
compile "io.reactivex:rxjava:1.2.4"
// rxandroid
compile "io.reactivex:rxandroid:0.24.0"
// rxbindings
compile 'com.jakewharton.rxbinding:rxbinding:1.0.0'
// retrolambda
apply plugin: 'me.tatarka.retrolambda'
buildscript {
dependencies {
classpath 'me.tatarka:gradle-retrolambda:3.1.0'
}
}
android {
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
// SQL lite
compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:+'
compile 'com.github.satyan:sugar:1.5'
compile 'com.pushtorefresh.storio:sqlite:1.12.1'
compile 'com.pushtorefresh.storio:sqlite-annotations:1.12.1'
compile 'com.github.jrvansuita:SQLiteHelper:v1.0.0'
// stream api
compile 'com.annimon:stream:1.1.4'
// Rxlifecycle
compile 'com.trello:rxlifecycle:0.4.0'
compile 'com.trello:rxlifecycle-components:0.4.0'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment