Skip to content

Commit 67bd8b7

Browse files
committed
Added Windows install tutorials for JDK and Maven
1 parent 56dfaf5 commit 67bd8b7

File tree

9 files changed

+127
-64
lines changed

9 files changed

+127
-64
lines changed
23 KB
Loading
23.8 KB
Loading
55.3 KB
Loading
22.8 KB
Loading
20.5 KB
Loading
20.8 KB
Loading
57.5 KB
Loading
Lines changed: 63 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,80 @@
1-
# Install Java on Windows
1+
# Instalación de Java en Windows
22

3-
Tutorials are learning-oriented articles that help users to go through a process and achieve a deliverable.
4-
Start with an introduction: for whom is this tutorial and what the reader will achieve by reading it.
5-
Answer the question: "Why should I follow this?"
3+
## Descarga de OpenJDK
64

7-
Provide a short outline for the tutorial.
8-
In this tutorial, you will learn how to:
9-
* Do this
10-
* Deal with that
5+
Ir al sitio de
6+
<a href="https://jdk.java.net/23/"><b>OpenJDK</b></a>
7+
y descargar el .zip correspondiente a Windows.
118

12-
## Before you start
9+
En este caso corresponde a la versión 23.
1310

14-
List the prerequisites that are required or recommended.
11+
Elegir la opción **Windows/x64**
1512

16-
Make sure that:
17-
- First prerequisite
18-
- Second prerequisite
13+
Luego de finalizada la descarga ubicar el archivo correspondiente. En este caso
1914

20-
## Part 1
15+
<shortcut>openjdk-23.0.1_windows-x64_bin</shortcut>
2116

22-
Describe what the user will learn and accomplish in the first part,
23-
then write a step-by-step procedure but on a real-world example.
17+
En el explorador de archivos, usando el menú contextual sobre la descarga elegir la opción **Extraer todo...**
2418

25-
1. Execute the following command in the terminal:
19+
Elegir un path donde deseemos instalar Java. En este caso utilizaremos
2620

27-
```bash
28-
run this --that
29-
```
21+
<shortcut>C:\Java</shortcut>
3022

31-
2. Step with a [link](https://www.jetbrains.com)
23+
Se creará la carpeta necesaria.
3224

33-
3. Final step in part 1.
25+
<img src="windows-java-0.png" alt="Windows 0" width="600"/>
3426

35-
## Part 2
27+
## Variables de entorno
3628

37-
This is the second part of the tutorial:
29+
Abrir **Configuración**. Luego en **Sistema**, elegir el botón **Información**
3830

39-
1. Step 1
40-
2. Step 2
41-
3. Step n
31+
En la sección **Especificaciones del dispositivo** elegir la opción **Configuración avanzada del sistema**
4232

43-
## What you've learned {id="what-learned"}
33+
En la ventana elegir la opción **Variables de entorno..** que se encuentra en la esquina inferior derecha.
4434

45-
Summarize what the reader achieved by completing this tutorial.
35+
En la sección **Variables del sistema** debe agregar una nueva variable de sistema presionando el botón **Nueva..**
4636

47-
<seealso>
48-
<!--Give some related links to how-to articles-->
49-
</seealso>
37+
En el popup completamos con <shortcut>JAVA_HOME</shortcut> como **Nombre de la variable**.
38+
En **Valor de la variable** lo completamos con la opción **Examinar directorio...**
39+
40+
Elegir el path donde se instaló Java, en este caso, <shortcut>C:\Java\jdk-23.0.1</shortcut>
41+
42+
<img src="windows-java-1.png" alt="Windows 1" width="600"/>
43+
44+
Por último vamos a modificar la variable de sistema **Path** para que incluya a la recién definida
45+
46+
Seleccionar la variable de sistema Path y luego **Editar...**
47+
48+
En la ventana elegir la opción **Nuevo** y luego **Examinar**
49+
50+
Ubicar el directorio donde se instaló Java pero ahora indicando la carpeta **bin/** correspondiente
51+
52+
<img src="windows-java-2.png" alt="Windows 2" width="600"/>
53+
54+
Aceptar los cambios en todas las ventanas.
55+
56+
## Consultar la versión instalada
57+
58+
Consulte la versión de Java instalada
59+
abriendo una terminal usando Símbolo de Sistema
60+
y ejecutando el siguiente comando
61+
62+
<code-block lang="console">java -version</code-block>
63+
64+
Debería ver una salida similar a la siguiente
65+
66+
<code-block lang="plain text">
67+
C:\Users\foo>java -version
68+
openjdk version "23.0.1" 2024-10-15
69+
OpenJDK Runtime Environment (build 23.0.1+11-39)
70+
OpenJDK 64-Bit Server VM (build 23.0.1+11-39, mixed mode, sharing)
71+
</code-block>
72+
73+
Identifique en la salida una versión
74+
<shortcut>23</shortcut> o superior, en este ejemplo es la <code>23.0.1</code>
75+
76+
<note>
77+
<p>
78+
Listo! Ya cuenta con Java instalado correctamente.
79+
</p>
80+
</note>
Lines changed: 64 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,81 @@
1-
# Install Maven on Windows
1+
# Instalación de Maven en Windows
22

3-
Tutorials are learning-oriented articles that help users to go through a process and achieve a deliverable.
4-
Start with an introduction: for whom is this tutorial and what the reader will achieve by reading it.
5-
Answer the question: "Why should I follow this?"
3+
## Descarga de Maven
64

7-
Provide a short outline for the tutorial.
8-
In this tutorial, you will learn how to:
9-
* Do this
10-
* Deal with that
5+
Ir al sitio de
6+
<a href="https://maven.apache.org/download.cgi"><b>Maven</b></a>
7+
y descargar **Binary Zip Archive**
118

12-
## Before you start
9+
Luego de finalizada la descarga ubicar el archivo correspondiente. En este caso
1310

14-
List the prerequisites that are required or recommended.
11+
<shortcut>apache-maven-3.9.9-bin.zip</shortcut>
1512

16-
Make sure that:
17-
- First prerequisite
18-
- Second prerequisite
13+
En el explorador de archivos, usando el menú contextual sobre la descarga elegir la opción **Extraer todo...**
1914

20-
## Part 1
15+
Elegir un path donde deseemos instalar Maven. En este caso utilizaremos
2116

22-
Describe what the user will learn and accomplish in the first part,
23-
then write a step-by-step procedure but on a real-world example.
17+
<shortcut>C:\Maven</shortcut>
2418

25-
1. Execute the following command in the terminal:
19+
Se creará la carpeta necesaria.
2620

27-
```bash
28-
run this --that
29-
```
21+
<img src="windows-maven-0.png" alt="Windows 0" width="600"/>
3022

31-
2. Step with a [link](https://www.jetbrains.com)
23+
## Variables de entorno
3224

33-
3. Final step in part 1.
25+
Abrir **Configuración**. Luego en **Sistema**, elegir el botón **Información**
3426

35-
## Part 2
27+
En la sección **Especificaciones del dispositivo** elegir la opción **Configuración avanzada del sistema**
3628

37-
This is the second part of the tutorial:
29+
En la ventana elegir la opción **Variables de entorno..** que se encuentra en la esquina inferior derecha.
3830

39-
1. Step 1
40-
2. Step 2
41-
3. Step n
31+
En la sección **Variables del sistema** debe agregar una nueva variable de sistema presionando el botón **Nueva..**
4232

43-
## What you've learned {id="what-learned"}
33+
En el popup completamos con <shortcut>M2_HOME</shortcut> como **Nombre de la variable**.
34+
En **Valor de la variable** lo completamos con la opción **Examinar directorio...**
4435

45-
Summarize what the reader achieved by completing this tutorial.
36+
Elegir el path donde se instaló Java, en este caso, <shortcut>C:\Maven\apache-maven-3.9.9</shortcut>
4637

47-
<seealso>
48-
<!--Give some related links to how-to articles-->
49-
</seealso>
38+
<img src="windows-maven-1.png" alt="Windows 1" width="600"/>
39+
40+
Repetimos el proceso pero ahora para la variable de sistema <shortcut>MAVEN_HOME</shortcut>
41+
42+
<img src="windows-maven-2.png" alt="Windows 2" width="600"/>
43+
44+
Por último vamos a modificar la variable de sistema **Path** para que incluya a la recién definida
45+
46+
Seleccionar la variable de sistema Path y luego **Editar...**
47+
48+
En la ventana elegir la opción **Nuevo** y completar con
49+
<shortcut>% M2_HOME%\bin</shortcut>
50+
51+
<img src="windows-maven-3.png" alt="Windows 3" width="600"/>
52+
53+
Aceptar los cambios en todas las ventanas.
54+
55+
## Consultar la versión instalada
56+
57+
Consulte la versión de Maven instalada
58+
abriendo una terminal usando Símbolo de Sistema
59+
y ejecutando el siguiente comando
60+
61+
<code-block lang="console">mvn -version</code-block>
62+
63+
Debería ver una salida similar a la siguiente
64+
65+
<code-block lang="plain text">
66+
C:\Users\foo>mvn -version
67+
Apache Maven 3.9.9 (8e8579a9e76f7d015ee5ec7bfcdc97d260186937)
68+
Maven home: C:\Maven\apache-maven-3.9.9
69+
Java version: 23.0.1, vendor: Oracle Corportation, runtime: C:\Java\jdk-23.0.1
70+
Default locale: es_ES, platform encoding: UTF-8
71+
OS name: "windows 11", version: "10.0", arch: "amd64", family: "windows"
72+
</code-block>
73+
74+
Identifique en la salida una versión
75+
<shortcut>23</shortcut> o superior, en este ejemplo es la <code>23.0.1</code>
76+
77+
<note>
78+
<p>
79+
Listo! Ya cuenta con Java instalado correctamente.
80+
</p>
81+
</note>

0 commit comments

Comments
 (0)