Class BasicRepositoryConnectorConfigurationKeys
- java.lang.Object
-
- org.eclipse.aether.connector.basic.BasicRepositoryConnectorConfigurationKeys
-
public final class BasicRepositoryConnectorConfigurationKeys extends java.lang.Object
The configuration keys forBasicRepositoryConnector.- Since:
- 2.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringCONFIG_PROP_DOWNSTREAM_THREADSNumber of threads in basic connector for downloading.static java.lang.StringCONFIG_PROP_INCLUDED_CHECKSUMSFlag indicating that instead of comparing the external checksum fetched from the remote repo with the calculated one, it should try to extract the reference checksum included in the actual artifact response headers This only works for HTTP transports.static java.lang.StringCONFIG_PROP_PARALLEL_PUTEnables or disables parallel PUT processing (parallel deploys) on basic connector globally or per remote repository.static java.lang.StringCONFIG_PROP_PERSISTED_CHECKSUMSFlag indicating whether checksums which are retrieved during checksum validation should be persisted in the local repository next to the file they provide the checksum for.static java.lang.StringCONFIG_PROP_THREADSDeprecated.UseCONFIG_PROP_UPSTREAM_THREADSandCONFIG_PROP_DOWNSTREAM_THREADSinstead.static java.lang.StringCONFIG_PROP_UPSTREAM_THREADSNumber of threads in basic connector for uploading.static java.lang.StringCONFIG_PROPS_PREFIXThe prefix for configuration properties.static booleanDEFAULT_INCLUDED_CHECKSUMSstatic booleanDEFAULT_PARALLEL_PUTstatic booleanDEFAULT_PERSISTED_CHECKSUMSstatic intDEFAULT_THREADS
-
-
-
Field Detail
-
CONFIG_PROPS_PREFIX
public static final java.lang.String CONFIG_PROPS_PREFIX
The prefix for configuration properties.- See Also:
- Constant Field Values
-
CONFIG_PROP_PERSISTED_CHECKSUMS
public static final java.lang.String CONFIG_PROP_PERSISTED_CHECKSUMS
Flag indicating whether checksums which are retrieved during checksum validation should be persisted in the local repository next to the file they provide the checksum for.- Since:
- 0.9.0.M4
- See Also:
- Constant Field Values
-
DEFAULT_PERSISTED_CHECKSUMS
public static final boolean DEFAULT_PERSISTED_CHECKSUMS
- See Also:
- Constant Field Values
-
CONFIG_PROP_THREADS
@Deprecated public static final java.lang.String CONFIG_PROP_THREADS
Deprecated.UseCONFIG_PROP_UPSTREAM_THREADSandCONFIG_PROP_DOWNSTREAM_THREADSinstead.Number of threads in basic connector for uploading/downloading. Observed only if some of the upstream or downstream threads are not set. (Deprecated)- Since:
- 0.9.0.M4
- See Also:
- Constant Field Values
-
CONFIG_PROP_UPSTREAM_THREADS
public static final java.lang.String CONFIG_PROP_UPSTREAM_THREADS
Number of threads in basic connector for uploading.- Since:
- 2.0.0
- See Also:
- Constant Field Values
-
CONFIG_PROP_DOWNSTREAM_THREADS
public static final java.lang.String CONFIG_PROP_DOWNSTREAM_THREADS
Number of threads in basic connector for downloading.- Since:
- 2.0.0
- See Also:
- Constant Field Values
-
DEFAULT_THREADS
public static final int DEFAULT_THREADS
- See Also:
- Constant Field Values
-
CONFIG_PROP_PARALLEL_PUT
public static final java.lang.String CONFIG_PROP_PARALLEL_PUT
Enables or disables parallel PUT processing (parallel deploys) on basic connector globally or per remote repository. When disabled, connector behaves exactly as in Maven 3.8.x did: GETs are parallel while PUTs are sequential. When enabled, connector will issue first PUT individually and only once completed the rest of PUTs in parallel.- Since:
- 1.9.5
- See Also:
- Constant Field Values
-
DEFAULT_PARALLEL_PUT
public static final boolean DEFAULT_PARALLEL_PUT
- See Also:
- Constant Field Values
-
CONFIG_PROP_INCLUDED_CHECKSUMS
public static final java.lang.String CONFIG_PROP_INCLUDED_CHECKSUMS
Flag indicating that instead of comparing the external checksum fetched from the remote repo with the calculated one, it should try to extract the reference checksum included in the actual artifact response headers This only works for HTTP transports.- Since:
- 0.9.0.M3
- See Also:
- Constant Field Values
-
DEFAULT_INCLUDED_CHECKSUMS
public static final boolean DEFAULT_INCLUDED_CHECKSUMS
- See Also:
- Constant Field Values
-
-