Skip to content

Environment

José Miguel Rodríguez García edited this page Oct 22, 2021 · 4 revisions

IntelliJ IDEA

The project source code was written using IntelliJ IDEA 2021.2.2:

IntelliJ IDEA 2021.2.2 (Ultimate Edition)
Build #IU-212.5284.40, built on September 14, 2021
Runtime version: 11.0.12+7-b1504.28 amd64

JDK

Java 8 version was used for this project and declared on pom.xml:

    <properties>
        <java.version>8</java.version>
    </properties>

Executing the next command we have information about the JDK used:

C:\> java -version
openjdk version "1.8.0_302"
OpenJDK Runtime Environment Corretto-8.302.08.1 (build 1.8.0_302-b08)
OpenJDK 64-Bit Server VM Corretto-8.302.08.1 (build 25.302-b08, mixed mode)

Maven

Maven wrapper plugin was used for this project, and the files are on the repository source code:

  • .mvn
  • mvnw
  • mvnw.cmd
C:\root> mvnw -version

Apache Maven 3.8.2 (ea98e05a04480131370aa0c110b8c54cf726c06f)
Maven home: C:\Users\xxx\.m2\wrapper\dists\apache-maven-3.8.2-bin\1um3pu5poco57pibs3g92d6vrf\apache-maven-3.8.2
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"

Also, you can run the application with a Maven installed version:

C:\root> mvn -version

Apache Maven 3.8.3 (ff8e977a158738155dc465c6a97ffaf31982d739)
Maven home: C:\apache-maven-3.8.3
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"
Clone this wiki locally