-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathreplication-plugin.xml
More file actions
29 lines (27 loc) · 1.36 KB
/
replication-plugin.xml
File metadata and controls
29 lines (27 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
You can configure one or more peer servers here.
Each server configuration should be placed within <servers></servers> tag.
Server configuration example:
<server>
<url>http://localhost:8083/nexus</url>
<user>admin</user>
<password>admin123</password>
</server>
User and password are optional. If there is neither login nor password (or login is empty) server will use anonymous user.
You could also define myUrl attribute for <configurations> tag that defines URL of the Nexus instance.
Remote URL of the proxy repository (at the peer instance) should start with myUrl (configured for master instance).
This configuration used to match what proxy repository have to poll artifact.
requestsQueueSize and requestsSendingThreadsCount attributes define thread pool configuration. This pool is used to send
requests from master to peers asynchronously.
The default values are: 500 for requestsQueueSize and 1 for requestsSendingThreadsCount
-->
<configurations myUrl="http://localhost:8081/nexus" requestsQueueSize="500" requestsSendingThreadsCount="1" queueDumpFileName="/tmp/nexus-replication-plugin-queue-backup">
<servers>
<server>
<url>http://localhost:8083/nexus</url>
<user>admin</user>
<password>admin123</password>
</server>
</servers>
</configurations>