@@ -61,13 +61,12 @@ class Deployed internal constructor(
6161 val currentVersion : String ,
6262 val latestStableVersion : String ,
6363 val description : String ,
64- val license : String
6564)
6665
6766object Artifacts {
68- val githubUrl = " https://github.com/mannodermaus/android-junit5"
69- val githubRepo = " mannodermaus/android-junit5"
70- val license = " Apache-2.0"
67+ const val GITHUB_URL = " https://github.com/mannodermaus/android-junit5"
68+ const val GITHUB_REPO = " mannodermaus/android-junit5"
69+ const val LICENSE = " Apache-2.0"
7170
7271 /* *
7372 * Retrieve the artifact configuration based on a Gradle project reference.
@@ -90,7 +89,6 @@ object Artifacts {
9089 artifactId = " android-junit5" ,
9190 currentVersion = " 1.11.0.0-SNAPSHOT" ,
9291 latestStableVersion = " 1.10.3.0" ,
93- license = license,
9492 description = " Unit Testing with JUnit 5 for Android."
9593 )
9694
@@ -108,7 +106,6 @@ object Artifacts {
108106 artifactId = " android-test-core" ,
109107 currentVersion = currentVersion,
110108 latestStableVersion = latestStableVersion,
111- license = license,
112109 description = " Extensions for instrumented Android tests with JUnit 5."
113110 )
114111
@@ -118,7 +115,6 @@ object Artifacts {
118115 artifactId = " android-test-extensions" ,
119116 currentVersion = currentVersion,
120117 latestStableVersion = latestStableVersion,
121- license = license,
122118 description = " Optional extensions for instrumented Android tests with JUnit 5."
123119 )
124120
@@ -128,7 +124,6 @@ object Artifacts {
128124 artifactId = " android-test-runner" ,
129125 currentVersion = currentVersion,
130126 latestStableVersion = latestStableVersion,
131- license = license,
132127 description = " Runner for integration of instrumented Android tests with JUnit 5."
133128 )
134129
@@ -138,7 +133,6 @@ object Artifacts {
138133 artifactId = " android-test-compose" ,
139134 currentVersion = currentVersion,
140135 latestStableVersion = latestStableVersion,
141- license = license,
142136 description = " Extensions for Jetpack Compose tests with JUnit 5."
143137 )
144138 }
0 commit comments