diff --git a/app/build.gradle b/app/build.gradle index 313bfa1..9acbcab 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -12,43 +12,43 @@ repositories { } android { - signingConfigs { - } - compileSdkVersion 28 - defaultConfig { - applicationId "online.anthonycicchetti.financetracker" - minSdkVersion 24 - targetSdkVersion 28 - versionCode 1 - versionName "1.0" - testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" - } - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' - } - } - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 + signingConfigs { + } + compileSdkVersion 28 + defaultConfig { + applicationId "online.anthonycicchetti.financetracker" + minSdkVersion 24 + targetSdkVersion 28 + versionCode 1 + versionName "1.0" + testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } } dependencies { - implementation project(':common') - implementation fileTree(include: ['*.jar'], dir: 'libs') + implementation project(':common') + implementation fileTree(include: ['*.jar'], dir: 'libs') - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${DependencyVersions.Kotlin}" - implementation "org.jetbrains.kotlin:kotlin-reflect:${DependencyVersions.Kotlin}" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${DependencyVersions.Kotlin}" + implementation "org.jetbrains.kotlin:kotlin-reflect:${DependencyVersions.Kotlin}" - testImplementation "org.junit.jupiter:junit-jupiter-api:${DependencyVersions.Jupiter}" - testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${DependencyVersions.Jupiter}" + testImplementation "org.junit.jupiter:junit-jupiter-api:${DependencyVersions.Jupiter}" + testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${DependencyVersions.Jupiter}" - implementation "com.android.support:design:${DependencyVersions.Android.SupportLibrary}" - implementation 'androidx.appcompat:appcompat:1.0.0-beta01' - implementation 'androidx.constraintlayout:constraintlayout-solver:1.1.2' - implementation 'com.google.android.material:material:1.0.0-beta01' - androidTestImplementation 'androidx.test:runner:1.1.0-alpha4' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4' + implementation "com.android.support:design:${DependencyVersions.Android.SupportLibrary}" + implementation 'androidx.appcompat:appcompat:1.0.0-beta01' + implementation 'androidx.constraintlayout:constraintlayout-solver:1.1.2' + implementation 'com.google.android.material:material:1.0.0-beta01' + androidTestImplementation 'androidx.test:runner:1.1.0-alpha4' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4' } diff --git a/build.gradle b/build.gradle index d7a9dd4..b43feb0 100644 --- a/build.gradle +++ b/build.gradle @@ -1,20 +1,20 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.2.60' - repositories { - google() - jcenter() - } - dependencies { - classpath 'com.android.tools.build:gradle:3.1.3' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + ext.kotlin_version = '1.2.60' + repositories { + google() + jcenter() + } + dependencies { + classpath 'com.android.tools.build:gradle:3.1.3' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - // NOTE: Do not place your application dependencies here; they belong - // in the individual module build.gradle files - } + // NOTE: Do not place your application dependencies here; they belong + // in the individual module build.gradle files + } } task clean(type: Delete) { - delete rootProject.buildDir + delete rootProject.buildDir } diff --git a/common/build.gradle b/common/build.gradle index aa67161..f81f45e 100644 --- a/common/build.gradle +++ b/common/build.gradle @@ -1,40 +1,43 @@ import com.anthonycicchetti.financetracker.DependencyVersions buildscript { - repositories { - mavenCentral() - } - dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}" - } + repositories { + mavenCentral() + } + dependencies { + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}" + } +} + +plugins { + id 'java-library' + id 'kotlin' } group 'online.anthonycicchetti' version '0.1.0' -apply plugin: 'java-library' -apply plugin: 'kotlin' repositories { - mavenCentral() - google() - jcenter() + mavenCentral() + google() + jcenter() } 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}" - testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${DependencyVersions.Jupiter}" + testImplementation "org.junit.jupiter:junit-jupiter-api:${DependencyVersions.Jupiter}" + testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${DependencyVersions.Jupiter}" } compileKotlin { - kotlinOptions.jvmTarget = "1.8" + kotlinOptions.jvmTarget = "1.8" } compileTestKotlin { - kotlinOptions.jvmTarget = "1.8" + kotlinOptions.jvmTarget = "1.8" } test { - useJUnitPlatform() + useJUnitPlatform() } \ No newline at end of file diff --git a/server/build.gradle b/server/build.gradle index 89dfc58..731f41f 100644 --- a/server/build.gradle +++ b/server/build.gradle @@ -1,20 +1,20 @@ import com.anthonycicchetti.financetracker.DependencyVersions buildscript { - repositories { - mavenCentral() - } - dependencies { - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}" - } + repositories { + mavenCentral() + } + dependencies { + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${DependencyVersions.Kotlin}" + } } plugins { - id "us.kirchmeier.capsule" version '1.0.2' - id 'application' + id "us.kirchmeier.capsule" version '1.0.2' + id 'application' + id 'kotlin' } -apply plugin: 'kotlin' group 'online.anthonycicchetti' version '0.1.0' @@ -28,17 +28,17 @@ repositories { } dependencies { - implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${DependencyVersions.Kotlin}" - implementation project(":common") + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${DependencyVersions.Kotlin}" + implementation project(":common") } compileKotlin { - kotlinOptions.jvmTarget = "1.8" + kotlinOptions.jvmTarget = "1.8" } compileTestKotlin { - kotlinOptions.jvmTarget = "1.8" + kotlinOptions.jvmTarget = "1.8" } task fatCapsule(type: FatCapsule) { - applicationClass 'MainKt' + applicationClass 'MainKt' } \ No newline at end of file