JBoss Maven Repositories: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= =Overview= {{Error|Clean this up}} =Organizatorium= http://repository.jboss.org/nexus/content/groups/public/ This is the repository where some of the patched...")
 
Line 6: Line 6:


=Organizatorium=
=Organizatorium=
Repositories from .m2/settings.xml:
JBoss Public Maven Repository: https://repository.jboss.org/nexus/content/groups/public-jboss
RedHat GA: https://maven.repository.redhat.com/ga/





Revision as of 00:35, 6 September 2017

Internal

Overview


Clean this up

Organizatorium

Repositories from .m2/settings.xml:

JBoss Public Maven Repository: https://repository.jboss.org/nexus/content/groups/public-jboss

RedHat GA: https://maven.repository.redhat.com/ga/



http://repository.jboss.org/nexus/content/groups/public/

This is the repository where some of the patched JARs from EAPs are found: https://maven.repository.redhat.com/nexus/content/groups/product-techpreview/

To find whether a EAP deployment has been patched and where the patches are, see EAP Patching.

To Migrate [JBossAndMaven].

https://repository.jboss.org/nexus/content/groups/public-jboss
<repository>
    <id>jboss-public-repository-group</id>
    <name>JBoss Public Maven Repository Group</name>
    <url>https://repository.jboss.org/nexus/content/groups/public-jboss/</url>
    <layout>default</layout>
</repository>
https://maven.repository.redhat.com/ga
<repository>
    <id>redhat-ga</id>
    <name>redhat-ga</name>
    <url>https://maven.repository.redhat.com/ga/</url>
   <layout>default</layout>
   <releases>
       <enabled>true</enabled>
       <updatePolicy>never</updatePolicy>
   </releases>
   <snapshots>
       <enabled>true</enabled>
	<updatePolicy>never</updatePolicy>
   </snapshots>
</repository>