|
| 1 | +# |
| 2 | +# Licensed to the Apache Software Foundation (ASF) under one |
| 3 | +# or more contributor license agreements. See the NOTICE file |
| 4 | +# distributed with this work for additional information |
| 5 | +# regarding copyright ownership. The ASF licenses this file |
| 6 | +# to you under the Apache License, Version 2.0 (the |
| 7 | +# "License"); you may not use this file except in compliance |
| 8 | +# with the License. You may obtain a copy of the License at |
| 9 | +# |
| 10 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +# |
| 12 | +# Unless required by applicable law or agreed to in writing, |
| 13 | +# software distributed under the License is distributed on an |
| 14 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | +# KIND, either express or implied. See the License for the |
| 16 | +# specific language governing permissions and limitations |
| 17 | +# under the License. |
| 18 | +# |
| 19 | + |
| 20 | +# |
| 21 | +# Maven user properties |
| 22 | +# |
| 23 | +# The properties defined in this file will be made available through |
| 24 | +# user properties at the very beginning of Maven's boot process. |
| 25 | +# |
| 26 | + |
| 27 | +maven.installation.conf = ${maven.home}/conf |
| 28 | +maven.user.conf = ${user.home}/.m2 |
| 29 | +maven.project.conf = ${session.rootDirectory}/.mvn |
| 30 | + |
| 31 | +# Comma-separated list of files to include. |
| 32 | +# Each item may be enclosed in quotes to gracefully include spaces. Items are trimmed before being loaded. |
| 33 | +# If the first character of an item is a question mark, the load will silently fail if the file does not exist. |
| 34 | +${includes} = ?"${maven.user.conf}/maven.properties", \ |
| 35 | + ?"${maven.project.conf}/maven.properties" |
| 36 | + |
| 37 | +# |
| 38 | +# Settings |
| 39 | +# |
| 40 | +# Define the default three levels for settings. |
| 41 | +# The '-is' flag will override the 'maven.installation.settings' property. |
| 42 | +# The '-ps' flag will override the 'maven.project.settings' property. |
| 43 | +# The '-s' flag will override the 'maven.user.settings' property. |
| 44 | +maven.installation.settings = ${maven.installation.conf}/settings.xml |
| 45 | +maven.project.settings = ${maven.project.conf}/settings.xml |
| 46 | +maven.user.settings = ${maven.user.conf}/settings.xml |
| 47 | + |
| 48 | +# |
| 49 | +# Toolchains |
| 50 | +# |
| 51 | +# Define the default three levels for toolchains. |
| 52 | +# The '-it' flag will override the 'maven.installation.toolchains' property. |
| 53 | +# The '-t' flag will override the 'maven.user.toolchains' property. |
| 54 | +maven.installation.toolchains = ${maven.installation.conf}/toolchains.xml |
| 55 | +maven.user.toolchains = ${maven.user.conf}/toolchains.xml |
| 56 | + |
| 57 | +# |
| 58 | +# Extensions |
| 59 | +# |
| 60 | +maven.installation.extensions = ${maven.installation.conf}/extensions.xml |
| 61 | +maven.project.extensions = ${maven.project.conf}/extensions.xml |
| 62 | +maven.user.extensions = ${maven.user.conf}/extensions.xml |
| 63 | + |
| 64 | +# |
| 65 | +# Maven central repository URL. |
| 66 | +# |
| 67 | +maven.repo.central = ${env.MAVEN_REPO_CENTRAL:-https://repo.maven.apache.org/maven2} |
0 commit comments