Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit db3d1b9

Browse files
geovannymcodepivovarit
authored andcommittedDec 5, 2024
V[0.0.1] Add translation of the index and introduction pages.
1 parent 73b7d8d commit db3d1b9

14 files changed

+939
-0
lines changed
 
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
== Comenzando
2+
3+
Los proyectos que incluyan Vavr deben apuntar como mínimo a Java 1.8.
4+
5+
El archivo `.jar` está disponible en http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.vavr%22%20a%3A%22vavr%22[Maven Central].
6+
7+
=== Gradle
8+
9+
[source,groovy]
10+
[subs="attributes"]
11+
----
12+
dependencies {
13+
compile "io.vavr:vavr:{project-version}"
14+
}
15+
----
16+
17+
Gradle 7+
18+
19+
[source,groovy]
20+
[subs="attributes"]
21+
----
22+
dependencies {
23+
implementation "io.vavr:vavr:{project-version}"
24+
}
25+
----
26+
27+
=== Maven
28+
29+
[source,xml]
30+
----
31+
<dependencies>
32+
<dependency>
33+
<groupId>io.vavr</groupId>
34+
<artifactId>vavr</artifactId>
35+
<version>0.10.4</version>
36+
</dependency>
37+
</dependencies>
38+
----
39+
40+
=== Independiente
41+
42+
Debido a que Vavr __no__ depende de ninguna biblioteca (aparte de la JVM), puedes agregarlo fácilmente como un archivo `.jar` independiente a tu __classpath__.
43+
44+
=== Snapshots
45+
46+
Las versiones en desarrollo se pueden encontrar https://oss.sonatype.org/content/repositories/snapshots/io/vavr/vavr[aquí].
47+
48+
==== Gradle
49+
50+
Agrega el repositorio adicional de snapshots en tu archivo `build.gradle`:
51+
52+
[source,groovy]
53+
----
54+
repositories {
55+
(...)
56+
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
57+
}
58+
----
59+
60+
==== Maven
61+
62+
Asegúrate de que tu archivo ``~/.m2/settings.xml`` contenga lo siguiente:
63+
64+
[source,xml]
65+
----
66+
<profiles>
67+
<profile>
68+
<id>allow-snapshots</id>
69+
<activation>
70+
<activeByDefault>true</activeByDefault>
71+
</activation>
72+
<repositories>
73+
<repository>
74+
<id>snapshots-repo</id>
75+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
76+
<releases>
77+
<enabled>false</enabled>
78+
</releases>
79+
<snapshots>
80+
<enabled>true</enabled>
81+
</snapshots>
82+
</repository>
83+
</repositories>
84+
</profile>
85+
</profiles>
86+
----
6.58 KB
Loading
10 KB
Loading
12.2 KB
Loading
Loading

‎src/docs/asciidoc/es/images/list1.png

2.75 KB
Loading

‎src/docs/asciidoc/es/images/list2.png

3.44 KB
Loading
4.84 KB
Loading
3.12 KB
Loading
14.4 KB
Loading
75.8 KB
Loading

‎src/docs/asciidoc/es/index_es.adoc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
= Guía del usuario de Vavr
2+
Daniel Dietrich, Robert Winkler
3+
:toc: left
4+
:toclevels: 3
5+
:source-highlighter: coderay
6+
:numbered:
7+
:hardbreaks:
8+
:revnumber: {project-version}
9+
:revdate: {localdate}
10+
:icons: font
11+
:pagenums:
12+
13+
include::introduction_es.adoc[]
14+
15+
include::getting_started_es.adoc[]
16+
17+
include::usage_guide_es.adoc[]
18+
19+
#include::pattern_matching.adoc[]
20+
21+
#include::license.adoc[]

‎src/docs/asciidoc/es/introduction_es.adoc

Lines changed: 392 additions & 0 deletions
Large diffs are not rendered by default.

‎src/docs/asciidoc/es/usage_guide_es.adoc

Lines changed: 440 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.