-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure stub 'pl' translation (#62)
related: #58
- Loading branch information
Showing
17 changed files
with
1,231 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
== Getting started | ||
|
||
Projects that include Vavr need to target Java 1.8 at minimum. | ||
|
||
The .jar is available at http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.vavr%22%20a%3A%22vavr%22[Maven Central]. | ||
|
||
=== Gradle | ||
|
||
[source,groovy] | ||
[subs="attributes"] | ||
---- | ||
dependencies { | ||
compile "io.vavr:vavr:{project-version}" | ||
} | ||
---- | ||
|
||
Gradle 7+ | ||
|
||
[source,groovy] | ||
[subs="attributes"] | ||
---- | ||
dependencies { | ||
implementation "io.vavr:vavr:{project-version}" | ||
} | ||
---- | ||
|
||
=== Maven | ||
|
||
[source,xml] | ||
---- | ||
<dependencies> | ||
<dependency> | ||
<groupId>io.vavr</groupId> | ||
<artifactId>vavr</artifactId> | ||
<version>0.10.5</version> | ||
</dependency> | ||
</dependencies> | ||
---- | ||
|
||
=== Standalone | ||
|
||
Because Vavr does __not__ depend on any libraries (other than the JVM) you can easily add it as standalone .jar to your classpath. | ||
|
||
=== Snapshots | ||
|
||
Developer versions can be found https://oss.sonatype.org/content/repositories/snapshots/io/vavr/vavr[here]. | ||
|
||
==== Gradle | ||
|
||
Add the additional snapshot repository to your `build.gradle`: | ||
|
||
[source,groovy] | ||
---- | ||
repositories { | ||
(...) | ||
maven { url "https://oss.sonatype.org/content/repositories/snapshots" } | ||
} | ||
---- | ||
|
||
==== Maven | ||
|
||
Ensure that your ``~/.m2/settings.xml`` contains the following: | ||
|
||
[source,xml] | ||
---- | ||
<profiles> | ||
<profile> | ||
<id>allow-snapshots</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<repositories> | ||
<repository> | ||
<id>snapshots-repo</id> | ||
<url>https://oss.sonatype.org/content/repositories/snapshots</url> | ||
<releases> | ||
<enabled>false</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
</profile> | ||
</profiles> | ||
---- |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
= Vavr Dokumentacja Techniczna | ||
Daniel Dietrich, Robert Winkler, Grzegorz Piwowarek | ||
:toc: left | ||
:toclevels: 3 | ||
:source-highlighter: coderay | ||
:numbered: | ||
:hardbreaks: | ||
:revnumber: {project-version} | ||
:revdate: {localdate} | ||
:icons: font | ||
:pagenums: | ||
|
||
include::introduction.adoc[] | ||
|
||
include::getting_started.adoc[] | ||
|
||
include::usage_guide.adoc[] | ||
|
||
include::pattern_matching.adoc[] | ||
|
||
include::license.adoc[] |
Oops, something went wrong.