Key Server & Frontend Version Specs + Maven Repository Configuration Guide

This guide lists the essential server and frontend component versions—including JDK, Maven, Spring Boot, Spring Cloud, Node, and Npm—explains special considerations for Spring milestone releases, and provides ready-to-use Maven repository and pluginRepository XML snippets for proper dependency management.

Java Architecture Diary
Java Architecture Diary
Java Architecture Diary
Key Server & Frontend Version Specs + Maven Repository Configuration Guide

Server Core Versions

JDK : 1.8

Maven : 3.5.0

Spring Boot : 2.2.0.M5

Spring Cloud : Hoxton.M2

Spring Cloud Alibaba : 2.1.0.RELEASE

Spring Cloud OAuth2 : 2.2.0.M2

Frontend Core Versions

Node : 10.16

Npm : 6.9.0

Avue : 2.0.6

ElementUI : 2.11.0

Special Notes

Server uses Spring Cloud/Boot milestone versions that are not published to Maven Central; configure a private Spring repository, noting that the differences from the final release are negligible.

Spring JAR private repository proxy.

Maven Repository Configuration

<repositories>
  <repository>
    <id>spring-milestones</id>
    <name>Spring Milestones</name>
    <url>https://repo.spring.io/milestone</url>
  </repository>
  <repository>
    <id>spring-snapshots</id>
    <name>Spring Snapshots</name>
    <url>https://repo.spring.io/snapshot</url>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </repository>
</repositories>

Plugin Repository Configuration

<pluginRepositories>
  <pluginRepository>
    <id>spring-milestones</id>
    <name>Spring Milestones</name>
    <url>https://repo.spring.io/milestone</url>
  </pluginRepository>
  <pluginRepository>
    <id>spring-snapshots</id>
    <name>Spring Snapshots</name>
    <url>https://repo.spring.io/snapshot</url>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </pluginRepository>
</pluginRepositories>
Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

frontendnodejsversionspring-boot
Java Architecture Diary
Written by

Java Architecture Diary

Committed to sharing original, high‑quality technical articles; no fluff or promotional content.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.