@@ -61,13 +61,12 @@ class Deployed internal constructor(
61
61
val currentVersion : String ,
62
62
val latestStableVersion : String ,
63
63
val description : String ,
64
- val license : String
65
64
)
66
65
67
66
object 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"
71
70
72
71
/* *
73
72
* Retrieve the artifact configuration based on a Gradle project reference.
@@ -90,7 +89,6 @@ object Artifacts {
90
89
artifactId = " android-junit5" ,
91
90
currentVersion = " 1.11.0.0-SNAPSHOT" ,
92
91
latestStableVersion = " 1.10.3.0" ,
93
- license = license,
94
92
description = " Unit Testing with JUnit 5 for Android."
95
93
)
96
94
@@ -108,7 +106,6 @@ object Artifacts {
108
106
artifactId = " android-test-core" ,
109
107
currentVersion = currentVersion,
110
108
latestStableVersion = latestStableVersion,
111
- license = license,
112
109
description = " Extensions for instrumented Android tests with JUnit 5."
113
110
)
114
111
@@ -118,7 +115,6 @@ object Artifacts {
118
115
artifactId = " android-test-extensions" ,
119
116
currentVersion = currentVersion,
120
117
latestStableVersion = latestStableVersion,
121
- license = license,
122
118
description = " Optional extensions for instrumented Android tests with JUnit 5."
123
119
)
124
120
@@ -128,7 +124,6 @@ object Artifacts {
128
124
artifactId = " android-test-runner" ,
129
125
currentVersion = currentVersion,
130
126
latestStableVersion = latestStableVersion,
131
- license = license,
132
127
description = " Runner for integration of instrumented Android tests with JUnit 5."
133
128
)
134
129
@@ -138,7 +133,6 @@ object Artifacts {
138
133
artifactId = " android-test-compose" ,
139
134
currentVersion = currentVersion,
140
135
latestStableVersion = latestStableVersion,
141
- license = license,
142
136
description = " Extensions for Jetpack Compose tests with JUnit 5."
143
137
)
144
138
}
0 commit comments