Skip to content

Commit

Permalink
jdk8 jitpack
Browse files Browse the repository at this point in the history
  • Loading branch information
demidko committed Nov 10, 2021
1 parent 8fc283b commit bc2c799
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Java библиотека для быстрого (!) получения лем
русского языка. Реинкарнация [aot-lematizier](https://github.com/bazhenov/aot-lematizer) с удобным
обновленным API, избавленная от closed-source зависимостей, упрощенная для сборки, и как следствие
легко подключаемая в другие проекты с помощью репозитория Jitpack. Поддерживает все версии Java
начиная с 11-ой версии, а также протестирована со всеми версиями Kotlin 1.5.*.
начиная с 8-ой версии, а также протестирована со всеми версиями Kotlin 1.5.*.

1. Определяет исходную форму слова согласно правилам русского языка, так называемую лемму (первое
лицо, единственное число).
Expand All @@ -25,10 +25,12 @@ Java библиотека для быстрого (!) получения лем

```java
import java.io.IOException;

import static java.lang.System.out;
import static com.github.demidko.aot.WordformMeaning.lookupForMeanings;

class Example {

public static void main(String[] args) throws IOException {

var meanings = lookupForMeanings("люди");
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
`maven-publish`
}
dependencies {
api("com.github.demidko:bits:2021.11.14")
api("com.github.demidko:bits:2021.11.15")
api("com.github.demidko:aot-bytecode:2021.10.29")
testImplementation("org.junit.jupiter:junit-jupiter:5.8.1")
testImplementation("org.hamcrest:hamcrest:2.2")
Expand Down
2 changes: 0 additions & 2 deletions jitpack.yml

This file was deleted.

0 comments on commit bc2c799

Please sign in to comment.