Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
rename allure-common to allure-android-commons
Browse files Browse the repository at this point in the history
  • Loading branch information
viclovsky committed Sep 13, 2019
1 parent 253def1 commit 4eed37d
Show file tree
Hide file tree
Showing 42 changed files with 11 additions and 11 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ buildscript {
}

dependencies {
compile project(":allure-model")
implementation project(":allure-model")

compile "org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}"
compile "com.google.code.gson:gson:${gsonVersion}"
compile "junit:junit:${jUnitVersion}"
implementation "org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}"
implementation "com.google.code.gson:gson:${gsonVersion}"
implementation "junit:junit:${jUnitVersion}"

testCompile "org.hamcrest:hamcrest-all:${hamcrestVersion}"
testCompile "org.jetbrains.kotlin:kotlin-test-junit:${kotlinVersion}"
testImplementation "org.hamcrest:hamcrest-all:${hamcrestVersion}"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${kotlinVersion}"
}

sourceSets {
Expand Down
2 changes: 1 addition & 1 deletion allure-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ android {

dependencies {
implementation project(':allure-model')
implementation project(':allure-common')
implementation project(':allure-android-commons')
implementation "org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}"
implementation "androidx.annotation:annotation:${androidXVersion}"
implementation "androidx.test:runner:${androidXTestVersion}"
Expand Down
6 changes: 3 additions & 3 deletions allure-model/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ buildscript {
}

dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}"
compile "com.google.code.gson:gson:${gsonVersion}"
implementation "org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}"
implementation "com.google.code.gson:gson:${gsonVersion}"

testCompile "org.jetbrains.kotlin:kotlin-test-junit:${kotlinVersion}"
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:${kotlinVersion}"
}

sourceSets {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
rootProject.name = "allure_android"

include "allure-model"
include "allure-common"
include "allure-android-commons"
include "allure-android"

0 comments on commit 4eed37d

Please sign in to comment.