Reformated build.gradles

This commit is contained in:
Anthony Cicchetti 2018-08-03 23:38:41 -04:00
parent a88dee6c95
commit e46b824638
4 changed files with 78 additions and 75 deletions

View file

@ -12,43 +12,43 @@ repositories {
} }
android { android {
signingConfigs { signingConfigs {
} }
compileSdkVersion 28 compileSdkVersion 28
defaultConfig { defaultConfig {
applicationId "online.anthonycicchetti.financetracker" applicationId "online.anthonycicchetti.financetracker"
minSdkVersion 24 minSdkVersion 24
targetSdkVersion 28 targetSdkVersion 28
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
} }
buildTypes { buildTypes {
release { release {
minifyEnabled false minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
} }
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
} }
dependencies { dependencies {
implementation project(':common') implementation project(':common')
implementation fileTree(include: ['*.jar'], dir: 'libs') implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${DependencyVersions.Kotlin}" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${DependencyVersions.Kotlin}"
implementation "org.jetbrains.kotlin:kotlin-reflect:${DependencyVersions.Kotlin}" implementation "org.jetbrains.kotlin:kotlin-reflect:${DependencyVersions.Kotlin}"
testImplementation "org.junit.jupiter:junit-jupiter-api:${DependencyVersions.Jupiter}" testImplementation "org.junit.jupiter:junit-jupiter-api:${DependencyVersions.Jupiter}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${DependencyVersions.Jupiter}" testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${DependencyVersions.Jupiter}"
implementation "com.android.support:design:${DependencyVersions.Android.SupportLibrary}" implementation "com.android.support:design:${DependencyVersions.Android.SupportLibrary}"
implementation 'androidx.appcompat:appcompat:1.0.0-beta01' implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout-solver:1.1.2' implementation 'androidx.constraintlayout:constraintlayout-solver:1.1.2'
implementation 'com.google.android.material:material:1.0.0-beta01' implementation 'com.google.android.material:material:1.0.0-beta01'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4' androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4' androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
} }

View file

@ -1,20 +1,20 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { buildscript {
ext.kotlin_version = '1.2.60' ext.kotlin_version = '1.2.60'
repositories { repositories {
google() google()
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.1.3' classpath 'com.android.tools.build:gradle:3.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files
} }
} }
task clean(type: Delete) { task clean(type: Delete) {
delete rootProject.buildDir delete rootProject.buildDir
} }

View file

@ -1,40 +1,43 @@
import com.anthonycicchetti.financetracker.DependencyVersions import com.anthonycicchetti.financetracker.DependencyVersions
buildscript { buildscript {
repositories { repositories {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}"
} }
}
plugins {
id 'java-library'
id 'kotlin'
} }
group 'online.anthonycicchetti' group 'online.anthonycicchetti'
version '0.1.0' version '0.1.0'
apply plugin: 'java-library'
apply plugin: 'kotlin'
repositories { repositories {
mavenCentral() mavenCentral()
google() google()
jcenter() jcenter()
} }
dependencies { dependencies {
api "com.fasterxml.jackson.module:jackson-module-kotlin:${DependencyVersions.Jackson}" api "com.fasterxml.jackson.module:jackson-module-kotlin:${DependencyVersions.Jackson}"
testImplementation "org.junit.jupiter:junit-jupiter-api:${DependencyVersions.Jupiter}" testImplementation "org.junit.jupiter:junit-jupiter-api:${DependencyVersions.Jupiter}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${DependencyVersions.Jupiter}" testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${DependencyVersions.Jupiter}"
} }
compileKotlin { compileKotlin {
kotlinOptions.jvmTarget = "1.8" kotlinOptions.jvmTarget = "1.8"
} }
compileTestKotlin { compileTestKotlin {
kotlinOptions.jvmTarget = "1.8" kotlinOptions.jvmTarget = "1.8"
} }
test { test {
useJUnitPlatform() useJUnitPlatform()
} }

View file

@ -1,20 +1,20 @@
import com.anthonycicchetti.financetracker.DependencyVersions import com.anthonycicchetti.financetracker.DependencyVersions
buildscript { buildscript {
repositories { repositories {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}"
} }
} }
plugins { plugins {
id "us.kirchmeier.capsule" version '1.0.2' id "us.kirchmeier.capsule" version '1.0.2'
id 'application' id 'application'
id 'kotlin'
} }
apply plugin: 'kotlin'
group 'online.anthonycicchetti' group 'online.anthonycicchetti'
version '0.1.0' version '0.1.0'
@ -28,17 +28,17 @@ repositories {
} }
dependencies { dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${DependencyVersions.Kotlin}" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${DependencyVersions.Kotlin}"
implementation project(":common") implementation project(":common")
} }
compileKotlin { compileKotlin {
kotlinOptions.jvmTarget = "1.8" kotlinOptions.jvmTarget = "1.8"
} }
compileTestKotlin { compileTestKotlin {
kotlinOptions.jvmTarget = "1.8" kotlinOptions.jvmTarget = "1.8"
} }
task fatCapsule(type: FatCapsule) { task fatCapsule(type: FatCapsule) {
applicationClass 'MainKt' applicationClass 'MainKt'
} }