publish to zedo repo.

This commit is contained in:
loliball 2024-10-13 15:03:22 +08:00
parent 921b7a58c8
commit f7d82b4e1f
2 changed files with 10 additions and 2 deletions

View File

@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
project.ext {
releaseVersion = '1.5.0-alpha01'
releaseVersion = '1.5.0-alpha01-loli'
releaseVersionCode = 1_005_000_0_01
minSdkVersion = 21
// See https://developer.android.com/training/cars/media/automotive-os#automotive-module

View File

@ -22,6 +22,14 @@ afterEvaluate {
maven {
url = findProperty('mavenRepo') ?: "${buildDir}/repo"
}
maven {
name = "zedo"
url = uri("https://zedo.top:408/reposilite/releases")
credentials(PasswordCredentials)
authentication {
basic(BasicAuthentication)
}
}
}
publications {
release(MavenPublication) {
@ -62,4 +70,4 @@ afterEvaluate {
}
}
}
tasks.withType(PublishToMavenRepository) { it.dependsOn lint, test }
//tasks.withType(PublishToMavenRepository) { it.dependsOn lint, test }