mirror of
https://github.com/google/nomulus.git
synced 2025-04-29 11:37:51 +02:00
* Create a nom_build wrapper script nom_build is a wrapper around ./gradlew. It's purpose is to help us deal with properties. The main problem that it is trying to solve is that when properties are specified using -P, we don't get an error if the property we specify isn't correct. As a result, a user or a build agent can launch a build with unintended parameters. nom_build consolidates all of the properties that we define into a python script where the properties are translated to flags (actual gradlew flags are also proxied). It also generates the property file and warns the user if the current properties file is out of sync with the script and includes documentation on each of the properties.
28 lines
670 B
Properties
28 lines
670 B
Properties
# This file defines properties used by the gradle build. It must be kept in
|
|
# sync with config/nom_build.py.
|
|
#
|
|
# To regenerate, run config/nom_build.py --generate-gradle-properties
|
|
#
|
|
# To view property descriptions (which are command line flags for
|
|
# nom_build), run config/nom_build.py --help.
|
|
#
|
|
# DO NOT EDIT THIS FILE BY HAND
|
|
org.gradle.jvmargs=-Xmx1024m
|
|
mavenUrl=
|
|
pluginsUrl=
|
|
uploaderDestination=
|
|
uploaderCredentialsFile=
|
|
uploaderMultithreadedUpload=
|
|
verboseTestOutput=false
|
|
flowDocsFile=
|
|
enableDependencyLocking=true
|
|
enableCrossReferencing=false
|
|
testFilter=
|
|
environment=
|
|
dbServer=
|
|
dbName=postgres
|
|
dbUser=
|
|
dbPassword=
|
|
publish_repo=
|
|
schema_version=
|
|
nomulus_version=
|