Skip to content

Commit

Permalink
Cleaning up build dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kpmmmurphy committed Dec 2, 2018
1 parent 58de064 commit e9a850d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 59 deletions.
22 changes: 7 additions & 15 deletions alerter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -125,23 +125,15 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

// Local Unit Tests - in src/test
testImplementation rootProject.ext.libs.junit
testImplementation 'junit:junit:4.12'

// Instrumentation Tests - in src/androidTest
androidTestImplementation rootProject.ext.libs.junit
androidTestImplementation rootProject.ext.libs.rules
androidTestImplementation rootProject.ext.libs.hamcrest
androidTestImplementation rootProject.ext.libs.espresso
androidTestImplementation rootProject.ext.libs.runner
androidTestImplementation rootProject.ext.libs.uiautomator
androidTestImplementation(rootProject.ext.libs.espresso, {
exclude group: 'com.android.support', module: 'support-annotations'
})

//Javadocs References
javadocDeps rootProject.ext.libs.support_annotations
javadocDeps rootProject.ext.libs.support_v4
javadocDeps rootProject.ext.libs.appcompat_v7
androidTestImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:rules:1.1.0'
androidTestImplementation 'org.hamcrest:hamcrest-library:1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
androidTestImplementation 'androidx.test:runner:1.1.0'
androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0'
}

task showBintrayProps {
Expand Down
6 changes: 2 additions & 4 deletions app-base/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,10 @@ android {
}

dependencies {
api 'androidx.constraintlayout:constraintlayout:1.1.2'
implementation project(':alerter')

implementation rootProject.ext.libs.support_v4
implementation rootProject.ext.libs.appcompat_v7
implementation rootProject.ext.libs.support_design
implementation "androidx.appcompat:appcompat:1.0.2"
implementation "com.google.android.material:material:1.0.0"

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

Expand Down
5 changes: 0 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,12 @@ buildscript {
sourceCompatibilityVersion = JavaVersion.VERSION_1_8
targetCompatibilityVersion = JavaVersion.VERSION_1_8

supportLibVersion = '1.0.0-alpha1'

keystoreProperties = '../keystore/release.properties'

app_version_code = 8
app_version_name = "1.1"

}

apply from: 'dependencies.gradle'

repositories {
google()
jcenter()
Expand Down
35 changes: 0 additions & 35 deletions dependencies.gradle

This file was deleted.

0 comments on commit e9a850d

Please sign in to comment.