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>
|
Author: o_oyao
License: All articles in this blog are licensed under
CC BY-NC-SA 4.0 unless stating additionally.