-
Notifications
You must be signed in to change notification settings - Fork 284
/
settings.xml
35 lines (32 loc) · 1.32 KB
/
settings.xml
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
30
31
32
33
34
35
<?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">
<!--
Since Liferay Faces is published to Maven Central, the deployment rules do not permit <repository>
or <pluginRepository> entries to appear in any of the pom.xml files. In order to build Liferay Faces
from source via Maven, the entries below must be copied to your $HOME/.m2/settings.xml file.
For more information, see:
1) https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide
2) http://blog.sonatype.com/people/2009/02/why-putting-repositories-in-your-poms-is-a-bad-idea/
-->
<profiles>
<profile>
<id>externalLiferayFacesRepositories</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
<repository>
<id>liferay-public</id>
<url>https://repository.liferay.com/nexus/content/groups/public</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>liferay-public</id>
<url>https://repository.liferay.com/nexus/content/groups/public</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
</settings>