Skip to content

Commit

Permalink
Added Red Hat maven repository into project POM.
Browse files Browse the repository at this point in the history
  • Loading branch information
VineetReynolds committed Nov 27, 2014
1 parent 8089c4f commit 8eb574b
Showing 1 changed file with 38 additions and 5 deletions.
43 changes: 38 additions & 5 deletions demo/pom.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.jboss.examples</groupId>
<artifactId>ticket-monster</artifactId>
<version>2.7.0-SNAPSHOT</version>
<packaging>war</packaging>

<name>ticket-monster</name>

<description>A starter HTML5 + REST webapp project for use on JBoss EAP.</description>

<!-- Activate JBoss Product Maven repository.
NOTE: Configuring the Maven repository in the pom.xml file is not a recommended procedure
and is only done here to make it easier to use the quickstarts.
For more information about how to configure Maven for your application,
see the section entitled 'Use the Maven Repository'
in the Development Guide for JBoss EAP 6 located here:
https://access.redhat.com/documentation/en-US/JBoss_Enterprise_Application_Platform/6.3/html-single/Development_Guide
-->
<repositories>
<repository>
<id>redhat-techpreview-all-repository</id>
<url>https://maven.repository.redhat.com/techpreview/all/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>redhat-techpreview-all-repository</id>
<url>https://maven.repository.redhat.com/techpreview/all/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

<properties>
<!-- Explicitly declaring the source encoding eliminates the following
message: -->
Expand Down

0 comments on commit 8eb574b

Please sign in to comment.