123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- ################################################################################
- #
- # Licensed to the Apache Software Foundation (ASF) under one or more
- # contributor license agreements. See the NOTICE file distributed with
- # this work for additional information regarding copyright ownership.
- # The ASF licenses this file to You under the Apache License, Version 2.0
- # (the "License"); you may not use this file except in compliance with
- # the License. You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- ################################################################################
- #
- # see: https://ops4j1.jira.com/wiki/display/paxurl/Aether+Configuration
- #
- # If set to true, the following property will not allow any certificate to be used
- # when accessing Maven repositories through SSL
- #
- org.ops4j.pax.url.mvn.certificateCheck=true
- #
- # Path to the local Maven settings file.
- # The repositories defined in this file will be automatically added to the list
- # of default repositories if the 'org.ops4j.pax.url.mvn.repositories' property
- # below is not set.
- # The following locations are checked for the existence of the settings.xml file
- # * 1. looks for the specified url
- # * 2. if not found looks for ${user.home}/.m2/settings.xml
- # * 3. if not found looks for ${maven.home}/conf/settings.xml
- # * 4. if not found looks for ${M2_HOME}/conf/settings.xml
- #
- # Properties prefixed with "org.ops4j.pax.url.mvn." have
- # higher priority except <proxies> element. HTTP proxies should be configured in
- # settings file
- #org.ops4j.pax.url.mvn.settings=
- #
- # Path to the local Maven repository which is used to avoid downloading
- # artifacts when they already exist locally.
- # The value of this property will be extracted from the settings.xml file
- # above, or defaulted to:
- # System.getProperty( "user.home" ) + "/.m2/repository"
- # leaving this option commented makes the system dependent on external
- # configuration, which is not always desired
- # "localRepository" is the target location for artifacts downloaded from
- # "remote repositories"
- #org.ops4j.pax.url.mvn.localRepository=
- #
- # Default this to false. It's just weird to use undocumented repos
- # "false" means that http://repo1.maven.org/maven2@id=central won't be
- # implicitly used as remote repository
- #
- org.ops4j.pax.url.mvn.useFallbackRepositories=false
- #
- # Comma separated list of repositories scanned when resolving an artifact.
- # list of repositories searched in the first place, should contain
- # ${runtime.home}/${karaf.default.repository}.
- # if "org.ops4j.pax.url.mvn.localRepository" is defined and it's not
- # ~/.m2/repository, it's recommended (at least for dev purposes) to add
- # ~/.m2/repository to defaultRepositories
- # each of these repositories is checked by aether as "local repository". if
- # artifact isn't found, "repositories" are searched next
- #
- # Those repositories will be checked before iterating through the
- # below list of repositories and even before the local repository
- # A repository url can be appended with zero or more of the following flags:
- # @snapshots : the repository contains snaphots
- # @noreleases : the repository does not contain any released artifacts
- #
- # The following property value will add the system folder as a repo.
- #
- org.ops4j.pax.url.mvn.defaultRepositories=\
- file:${karaf.home}/${karaf.default.repository}@id=system.repository@snapshots, \
- file:${karaf.data}/kar@id=kar.repository@multi@snapshots, \
- file:${karaf.base}/${karaf.default.repository}@id=child.system.repository@snapshots
- #
- # if "defaultLocalRepoAsRemote" is set do *any* value, localRepository will be
- # added to the list of remote repositories being searched for artifacts
- #
- #org.ops4j.pax.url.mvn.defaultLocalRepoAsRemote = true
- #
- # Comma separated list of repositories scanned when resolving an artifact.
- # list of repositories searched after resolution fails for "defaultRepositories"
- # These are true remote repositories accessed using maven/aether/wagon
- # mechanisms. If any repository contains required artifact, it is then written
- # to "localRepository"
- #
- # if this list is _prepended_ with '+' sign, all repositories from active
- # profiles defined in effective settings.xml file will be _appended_ to this
- # list
- # The default list includes the following repositories:
- # http://repo1.maven.org/maven2@id=central
- # http://repository.springsource.com/maven/bundles/release@id=spring.ebr
- # http://repository.springsource.com/maven/bundles/external@id=spring.ebr.external
- # http://zodiac.springsource.com/maven/bundles/release@id=gemini
- # http://repository.apache.org/content/groups/snapshots-group@id=apache@snapshots@noreleases
- # https://oss.sonatype.org/content/repositories/snapshots@id=sonatype.snapshots.deploy@snapshots@noreleases
- # https://oss.sonatype.org/content/repositories/ops4j-snapshots@id=ops4j.sonatype.snapshots.deploy@snapshots@noreleases
- # A repository url can be appended with zero or more of the following flags:
- # @snapshots : the repository contains snapshots
- # @noreleases : the repository does not contain any released artifacts
- # @id=repository.id : the id for the repository, just like in the
- # settings.xml this is optional but recommended
- #
- org.ops4j.pax.url.mvn.repositories= \
- http://repo1.maven.org/maven2@id=central, \
- http://repository.springsource.com/maven/bundles/release@id=spring.ebr.release, \
- http://repository.springsource.com/maven/bundles/external@id=spring.ebr.external, \
- http://zodiac.springsource.com/maven/bundles/release@id=gemini, \
- http://repository.apache.org/content/groups/snapshots-group@id=apache@snapshots@noreleases, \
- https://oss.sonatype.org/content/repositories/snapshots@id=sonatype.snapshots.deploy@snapshots@noreleases, \
- https://oss.sonatype.org/content/repositories/ops4j-snapshots@id=ops4j.sonatype.snapshots.deploy@snapshots@noreleases, \
- http://repository.springsource.com/maven/bundles/external@id=spring-ebr-repository@snapshots@noreleases
- #
- # Global policies override repository-specific settings (@checksum=..., @update=..., @releasesUpdate=..., ...)
- #
- #org.ops4j.pax.url.mvn.globalUpdatePolicy = daily
- #org.ops4j.pax.url.mvn.globalChecksumPolicy = warn
- #
- # socket and connection configuration (pax-url-aether 2.5.0)
- #
- # default value for connection and read timeouts, when socket.readTimeout and socket.connectionTimeout
- # are not specified
- org.ops4j.pax.url.mvn.timeout = 5000
- # timeout in ms when establishing http connection during artifact resolution
- org.ops4j.pax.url.mvn.socket.connectionTimeout = 5000
- # timeout in ms when reading data after connecting to remote repository
- org.ops4j.pax.url.mvn.socket.readTimeout = 30000
- # SO_KEEPALIVE option for sockets, defaults to false
- org.ops4j.pax.url.mvn.socket.keepAlive = false
- # SO_LINGER option for sockets, defaults to -1
- org.ops4j.pax.url.mvn.socket.linger = -1
- # SO_REUSEADDR option for sockets, defaults to false
- org.ops4j.pax.url.mvn.socket.reuseAddress = false
- # TCP_NODELAY option for sockets, defaults to true
- org.ops4j.pax.url.mvn.socket.tcpNoDelay = true
- # Configure buffer size for HTTP connections (output and input buffers), defaults to 8192 bytes
- org.ops4j.pax.url.mvn.connection.bufferSize = 8192
- # Number of connection retries after failure is detected in http client. httpclient uses default value "3"
- org.ops4j.pax.url.mvn.connection.retryCount = 3
|