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.
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
<code><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>
</code>Plugin Repository Configuration
<code><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>
</code>Java Architecture Diary
Committed to sharing original, high‑quality technical articles; no fluff or promotional content.
How this landed with the community
Was this worth your time?
0 Comments
Thoughtful readers leave field notes, pushback, and hard-won operational detail here.