forked from liferay/liferay-faces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.xml
47 lines (44 loc) · 1.76 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
36
37
38
39
40
41
42
43
44
45
46
47
<?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>
<!-- Required for JSR 329 TCK -->
<repository>
<id>liferay-thirdparty</id>
<url>http://repository.liferay.com/content/repositories/thirdparty/</url>
</repository>
<!-- Required for JBoss EL -->
<repository>
<id>public-jboss</id>
<url>http://repository.jboss.org/nexus/content/groups/public-jboss</url>
</repository>
<!-- Required for PrimeFaces Dependencies -->
<repository>
<id>primefaces-releases</id>
<url>http://repository.primefaces.org</url>
</repository>
</repositories>
<pluginRepositories>
<!-- Required for the maven-jdocbook-plugin -->
<pluginRepository>
<id>maven2-repository.jboss.org</id>
<url>http://repository.jboss.org/nexus/content/groups/public-jboss</url>
</pluginRepository>
</pluginRepositories>
</profile>
</profiles>
</settings>