Search...
Toggle theme

Spring 5.x Trial

Installation and configuration guide for NES Spring 5.x Trial

Available Packages & Versions

View our complete list of supported Spring 5.x Trial versions and packages.

Setup Instructions

Example repositories showing before/after configuration:

Configure Registry

Create or update your registry configuration:

Maven (~/.m2/settings.xml)
Gradle (~/.gradle/gradle.properties)
<settings>
  <servers>
    <!-- Other server settings -->
    <server>
      <id>herodevs-nes-registry</id>
      <username>some@email.com</username>
    </server>
  </servers>
</settings>

Update Build Configuration

Add the NES repository and dependencies to your build configuration:

Maven
Gradle
<parent>
  <groupId>com.herodevs.nes.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <version>2.7.18-spring-boot-2.7.19-trial</version>
</parent>

<!-- Update Spring dependencies -->
<dependencies>
  <dependency>
    <groupId>com.herodevs.nes.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
  </dependency>
  <dependency>
    <groupId>com.herodevs.nes.springframework.boot</groupId>
    <artifactId>spring-boot-starter-test</artifactId>
    <scope>test</scope>
  </dependency>
</dependencies>

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

<pluginRepositories>
  <pluginRepository>
    <id>herodevs-nes-registry</id>
    <url>https://registry.nes.herodevs.com/maven</url>
  </pluginRepository>
</pluginRepositories>

Build

Run your build tool:

Maven
Gradle
mvn clean install

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 Spring-related errors

Manual Downloads

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

PortionValue
base_urlhttps://registry.nes.herodevs.com/maven/com/herodevs/nes/springframework/boot/
package_namespring-boot-starter-parent
version2.7.18-spring-boot-2.7.19-trial
filenamepackage_name + version + extension

Example Link

https://registry.nes.herodevs.com/maven/com/herodevs/nes/springframework/boot/spring-boot-starter-parent/2.7.18-spring-boot-2.7.19-trial/spring-boot-starter-parent-2.7.18-spring-boot-2.7.19-trial.pom