Skip to content

Commit 64487a6

Browse files
committed
Unified version number formatting
1 parent 4c5b610 commit 64487a6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

android-junit5/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ dependencies {
7575
compile gradleApi()
7676
compile localGroovy()
7777
compile "org.junit.platform:junit-platform-gradle-plugin:$JUNIT_PLATFORM_VERSION"
78-
compileOnly "com.android.tools.build:gradle:$ANDROID_PLUGIN_VERSION_2X"
78+
compileOnly "com.android.tools.build:gradle:$ANDROID_PLUGIN_2X_VERSION"
7979

8080
testCompile "junit:junit:$JUNIT4_VERSION"
8181
testCompile("org.spockframework:spock-core:$SPOCK_VERSION") { transitive = false }
82-
testCompileOnly "com.android.tools.build:gradle:$ANDROID_PLUGIN_VERSION_3X"
83-
testAgp2xCompile "com.android.tools.build:gradle:$ANDROID_PLUGIN_VERSION_2X"
84-
testAgp3xCompile "com.android.tools.build:gradle:$ANDROID_PLUGIN_VERSION_3X"
82+
testCompileOnly "com.android.tools.build:gradle:$ANDROID_PLUGIN_3X_VERSION"
83+
testAgp2xCompile "com.android.tools.build:gradle:$ANDROID_PLUGIN_2X_VERSION"
84+
testAgp3xCompile "com.android.tools.build:gradle:$ANDROID_PLUGIN_3X_VERSION"
8585
}
8686

8787
// ------------------------------------------------------------------------------------------------

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ DESCRIPTION = Unit Testing with JUnit 5 for Andr
1212
VCS_URL = https://github.com/aurae/android-junit5
1313

1414
# Dependency versions (plugins)
15-
ANDROID_PLUGIN_VERSION_2X = 2.3.2
16-
ANDROID_PLUGIN_VERSION_3X = 3.0.0-beta2
15+
ANDROID_PLUGIN_2X_VERSION = 2.3.2
16+
ANDROID_PLUGIN_3X_VERSION = 3.0.0-beta2
1717
BINTRAY_PLUGIN_VERSION = 1.7.3
1818

1919
# Dependency versions

sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
dependencies {
1111
//noinspection GradleDynamicVersion
1212
classpath "de.mannodermaus.gradle.plugins:android-junit5:+"
13-
classpath "com.android.tools.build:gradle:$ANDROID_PLUGIN_VERSION_3X"
13+
classpath "com.android.tools.build:gradle:$ANDROID_PLUGIN_3X_VERSION"
1414
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
1515
}
1616
}

0 commit comments

Comments
 (0)