2018-08-03 21:12:41 +03:00
|
|
|
# Project-wide Gradle settings.
|
|
|
|
# IDE (e.g. Android Studio) users:
|
|
|
|
# Gradle settings configured through the IDE *will override*
|
|
|
|
# any settings specified in this file.
|
|
|
|
# For more details on how to configure your build environment visit
|
|
|
|
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
|
|
|
# Specifies the JVM arguments used for the daemon process.
|
|
|
|
# The setting is particularly useful for tweaking memory settings.
|
|
|
|
org.gradle.jvmargs=-Xmx1536m
|
|
|
|
# When configured, Gradle will run in incubating parallel mode.
|
|
|
|
# This option should only be used with decoupled projects. More details, visit
|
|
|
|
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
|
|
|
# org.gradle.parallel=true
|
2018-09-12 21:39:25 +03:00
|
|
|
|
2019-03-14 20:42:07 +03:00
|
|
|
libGroupId=org.mozilla.appservices
|
2018-09-12 21:39:25 +03:00
|
|
|
libRepositoryName=application-services
|
Publish all Maven artifacts to a single bintray package.
Right now, we publish each Maven artifact "cluster" -- for "logins",
say, that is "logins", "logins-withoutLibs", and "logins-forUnitTests"
-- to a single bintray package named like the Maven artifact ID (say,
"logins").
This seems to be common, but bintray mirrors packages to jcenter, and
bintray packages don't map directly to Maven coordinates. AFAICT,
that is the thing that requires somebody (right now, me -- nalexander)
to push the "mirror to jcenter" button in the bintray UI.
If we instead have a single bintray "package" (say,
"org.mozilla.appservices") and then publish many Maven artifacts to
that package, we should get automatic jcenter mirroring for everything
that we have under it. Let's try!
2019-03-16 01:35:33 +03:00
|
|
|
libProjectName=org.mozilla.appservices
|
2018-09-12 21:39:25 +03:00
|
|
|
libProjectDescription=Firefox Application Services
|
|
|
|
libUrl=https://github.com/mozilla/application-services
|
|
|
|
libVcsUrl=https://github.com/mozilla/application-services.git
|
|
|
|
|
|
|
|
libLicense=MPL-2.0
|
|
|
|
libLicenseUrl=https://www.mozilla.org/en-US/MPL/2.0/
|
2020-04-07 19:51:42 +03:00
|
|
|
|
|
|
|
android.useAndroidX=true
|