Visit NES for Quarkus Home Page

Quarkus 3.20.x Setup

Installation and configuration guide for NES for Quarkus 3.20.x

Setup Instructions

Configure Registry

Create or update your registry configuration:

Maven (~/.m2/settings.xml)
Gradle (~/.gradle/gradle.properties)
<settings>
  <servers>
    <server>
      <id>herodevs-nes-registry</id>
      <username>any_text_here_not_used</username>
      <password>YOUR_NES_ACCESS_TOKEN</password>
    </server>
  </servers>
</settings>

Update Build Configuration

Add the NES repository and dependencies to your build configuration:

Maven (pom.xml)
Gradle
<!-- Update the Quarkus BOM dependency version. The other option is using the NES version for each Quarkus import -->
<dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-bom</artifactId>
      <version>3.20.6-quarkus-3.20.7</version>
      <type>pom</type>
      <scope>import</scope>
    </dependency>
  </dependencies>
</dependencyManagement>

<!-- Add NES repository -->
<repositories>
  <repository>
    <id>herodevs-nes-registry</id>
    <url>https://registry.nes.herodevs.com/maven</url>
  </repository>
</repositories>

Build

In order to remove potential obstacles before building your project, make sure the following domains are whitelisted by your firewall/networking team:

  • registry.nes.herodevs.com
  • assets.nes.herodevs.com

This will ensure that your network/firewall allows connection to our registry.

Run your build tool:

Maven
Gradle
mvn clean package

Verification

To verify your installation, check that:

  1. Dependencies are downloaded successfully
  2. No version conflicts are reported in your build
  3. Your application starts without errors

Manual Downloads

The direct download URLs for NES for Quarkus packages follow this format:

PortionValue
base_urlhttps://registry.nes.herodevs.com/maven/io/quarkus/
package_namequarkus-bom
version3.20.6-quarkus-3.20.7
filenamepackage_name + version + extension

Example Link

https://registry.nes.herodevs.com/maven/io/quarkus/quarkus-bom/3.20.6-quarkus-3.20.7/quarkus-bom-3.20.6-quarkus-3.20.7.pom