0% found this document useful (0 votes)
21 views2 pages

Settings

The document is a Maven settings XML configuration that specifies a local repository path and proxy settings for HTTP and HTTPS connections. It includes details about mirrors for Maven repositories and server credentials for accessing the RMA Maven public repository. Additionally, it defines a profile that activates by default, allowing access to a specific repository for both releases and snapshots.

Uploaded by

imane el alji
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
21 views2 pages

Settings

The document is a Maven settings XML configuration that specifies a local repository path and proxy settings for HTTP and HTTPS connections. It includes details about mirrors for Maven repositories and server credentials for accessing the RMA Maven public repository. Additionally, it defines a profile that activates by default, allowing access to a specific repository for both releases and snapshots.

Uploaded by

imane el alji
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<?xml version="1.0" encoding="UTF-8"?

>

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">

<localRepository>C:\Users\S0001494\.m2\repository</localRepository>
<offline>false</offline>

<proxies>
<proxy>
<id>proxy-http</id>
<active>true</active>
<protocol>https</protocol>
<host>proxyrma.rmawatanya.com</host>
<port>8080</port>
<nonProxyHosts>
144.146.*|172.*|126.*|82.*|*.bmcebank.co.ma|*.eurafric-
information.com|10.100.*|*pic.ref.eurafric.com|infrarma.rmaassurance.com|10.7.*
</nonProxyHosts>
</proxy>
<proxy>
<id>proxy-https</id>
<active>true</active>
<protocol>https</protocol>
<host>proxyrma.rmawatanya.com</host>
<port>8080</port>
<nonProxyHosts>
144.146.*|172.*|126.*|82.*|*.bmcebank.co.ma|*.eurafric-
information.com|10.100.*|*pic.ref.eurafric.com|infrarma.rmaassurance.com|10.7.*
</nonProxyHosts>
</proxy>
</proxies>
<mirrors>
<mirror>
<id>RMA-proxy-eai</id>
<name>RMA-Maven-Repositories-Group</name>
<url>http://infrarma.rmaassurance.com:9081/repository/maven-proxy-eai/
</url>
<mirrorOf>*</mirrorOf>
</mirror>
</mirrors>
<servers>
<server>
<id>RMA-maven-public</id>
<username>S0001494</username>
<password>rma+2025</password>
</server>
</servers>
<profiles>
<profile>
<id>rma-repo</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>rma-repo</id>
<url>http://infrarma.rmaassurance.com:9081/repository/maven-
proxy-eai</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
</settings>

You might also like