Skip to content

Instantly share code, notes, and snippets.

@thikade
Created June 1, 2016 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thikade/257e43cbac09aab41da6c7443fc7ced6 to your computer and use it in GitHub Desktop.
Save thikade/257e43cbac09aab41da6c7443fc7ced6 to your computer and use it in GitHub Desktop.
How to resolve IBM Liberty dependency in Maven
<!-- The problem was maven was only looking at the central repository. To add IBM's repository, you need the following in your POM: -->
<repositories>
<repository>
<id>Liberty</id>
<name>Liberty Repository</name>
<url>http://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/maven/repository/</url>
</repository>
</repositories>