diff --git a/constants.gradle b/constants.gradle index 05a6fa6131..32dd3df964 100644 --- a/constants.gradle +++ b/constants.gradle @@ -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 diff --git a/publish.gradle b/publish.gradle index 79130e049b..b5af6a6aa1 100644 --- a/publish.gradle +++ b/publish.gradle @@ -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 }