ORIGIN

E-Commerce Platform: 03 Install Java && Maven

E-Commerce Platform 1 min130 words

Install Java and maven and set them up.

Install Java, Maven

Java: https://www.liaoxuefeng.com/wiki/1252599548343744/1280507291631649

Maven: https://dyingdown.github.io/2023/02/14/Maven-IDEA/

Set up Maven

Go to files: C:\apache-maven-3.9.6\conf\settings.xml (where your maven installed)

Add the following inside <profiles></profiles>

1
2
3
4
5
6
7
8
9
10
11
12
<profile>
<id>jdk-20</id>
<activation>
<activeByDefault>true </activeByDefault>
<jdk>20</jdk>
</activation>
<properties>
<maven.compiler.source>20</maven.compiler.source>
<maven.compiler.target>20</maven.compiler.target>
<maven.compiler.compilerVersion>20</maven.compiler.compilerVersion>
</properties>
</profile>
TOP
COMMENT
  • ABOUT
  • |
o_oyao
  The Jigsaw puzzle is incomplete with even one missing piece. And I want to be the last piece to make the puzzle complete.
Like my post?
Default QR Code
made with ❤️ by o_oyao
©o_oyao 2019-2024

|