Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#11569] Move app ID and app version configuration out of build.properties #11985

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions gradle.template.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
# Reference: https://docs.gradle.org/current/userguide/gradle_daemon.html
org.gradle.daemon=false

# This is the application ID of the app.
# For dev server, this could be anything.
# For staging server, this must match the name of your Google Cloud project.
app.id = teammates-john

# This is the version number of the app.
# Use dashes instead of dots because GAE does not allow dots in version number.
# e.g. app.version = 8-0-0
app.version = 8-0-0

# Use this property if you want to use a JDK other than the one specified in your PATH variable.
# Windows users should use a forward slash (/) instead of the Windows default backward slash (\) while specifying the path.
# e.g org.gradle.java.home=/Library/Java/JavaVirtualMachines/jdk-11.jdk/Contents/Home
Expand Down
10 changes: 0 additions & 10 deletions src/main/resources/build.template.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,11 @@
# Use '\' to escape ':' e.g., http\://google.com
#-----------------------------------------------------------------------------

# This is the application ID of the app.
# For dev server, this could be anything.
# For staging server, this must match the name of your Google Cloud project.
app.id = teammates-john

# This is the deployment region of the app.
# For dev server, this could be anything.
# For staging/production server, this must match the region of your GAE application.
app.region=us-central1

# This is the version number of the app.
# Use dashes instead of dots because GAE does not allow dots in version number.
# e.g. app.version = 8-0-0
app.version = 8-0-0

# This is the URL for the front-end which the user is going to access.
# This affects all URLs sent in outbound emails.
# If not explicitly set:
Expand Down