Trial for Spring Boot 1.5

Installation and configuration guide for NES for Spring Boot 1.5 Trial

Available Packages & Versions

View our complete list of supported Spring Boot 1.5 Trial versions and packages.

Sample Application

Setup Instructions

NES for Spring Boot 1.5 has the following system requirements: Java 8+, Maven 3.5+, Gradle 4.0.0 - 6.8.x:

Note: username and password are required but can be set to any email address.

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>
      <password>some@email.com</password>
    </server>
  </servers>
</settings>

Update Build Configuration

Add the NES repository and dependencies to your build configuration:

Maven
Gradle
<parent>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-parent</artifactId>
  <!-- Update Spring dependencies -->
  <version>1.5.22-spring-boot-1.5.24-trial</version>
</parent>

<dependencies>
  <!-- Update Spring dependencies -->
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
  </dependency>
  <dependency>
    <groupId>org.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

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 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/org/springframework/boot/
package_namespring-boot-starter-parent
version1.5.22-spring-boot-1.5.24-trial
filenamepackage_name + version + extension

Example Link

https://registry.nes.herodevs.com/maven/org/springframework/boot/spring-boot-starter-parent/1.5.22-spring-boot-1.5.24-trial/spring-boot-starter-parent-1.5.22-spring-boot-1.5.24-trial.pom