Alexander Kuznetsov
71af7f6f9d
Merge pull request #28 from MysterionRise/master
...
update to Lucene 9.3
2022-09-28 15:03:55 +03:00
Konstantin Perikov
5101a6fc4c
update licence header
2022-09-28 10:06:14 +01:00
Konstantin Perikov
1ecc7aaf9d
update to Lucene 9.3
2022-09-27 21:48:56 +01:00
Alexander Kuznetsov
40fe59dd02
Merge pull request #25 from MysterionRise/master
...
Clean up and update PR
2021-12-13 15:11:41 +03:00
Konstantin Perikov
d4d083ed97
make ci to run on PR as well
2021-12-11 11:58:01 +00:00
Konstantin Perikov
bc2c79e302
Merge branch 'master' of github.com:MysterionRise/russianmorphology
2021-12-10 18:17:25 +00:00
Konstantin Perikov
96900e334e
update to jdk11, fix migration issues, some typos, deprecated apis, bump up Lucene to 8.11
2021-12-10 18:15:47 +00:00
Alexander Kuznetsov
46127f3943
Merge pull request #24 from bannikovilea/enable-ci
...
Enable ci
2021-11-01 13:32:14 +03:00
bannikovilea
cf61071056
Pack artifacts
2021-10-29 18:16:24 +05:00
bannikovilea
6ebbd00cfd
Add ci maven config
2021-10-26 02:30:55 +05:00
Alexander Kuznetsov
a9b9269f90
Merge pull request #23 from MysterionRise/master
...
fix typos in readme, bump up versions of lucene
2021-01-18 10:56:42 +03:00
Konstantin Perikov
b2fec940d0
fix typos in readme, bump up versions of lucene
2021-01-14 19:38:07 +00:00
Alexander Kuznetsov
ee85c496ab
Merge pull request #20 from JLLeitschuh/fix/JLL/use_https_to_resolve_dependencies
...
[SECURITY] Use HTTPS to resolve dependencies in Maven Build
2020-02-11 16:58:43 +03:00
Jonathan Leitschuh
15edc4b843
Use HTTPS instead of HTTP to resolve dependencies
...
This fixes a security vulnerability in this project where the `pom.xml`
files were configuring Maven to resolve dependencies over HTTP instead of
HTTPS.
Signed-off-by: Jonathan Leitschuh <Jonathan.Leitschuh@gmail.com>
2020-02-10 22:29:47 -05:00
Alexander Kuznetsov
426ef2e750
Merge pull request #19 from IvanSorokin/master
...
Lucene version 8.0
2019-07-02 14:57:42 +03:00
ivansorokin
3fe076556f
- removed deprecated standart filter
...
- version 1.5
- lucene version 8.0
- new syntax for TokenStreamComponents
2019-06-26 23:34:09 +05:00
Alexander Kuznetsov
48b1ceeb3a
Merge pull request #18 from babayotakun/master
...
Lucene upgrade to 7.2
2018-07-24 18:03:01 +03:00
d.kalach
6f936cf261
Lucene upgrade to 7.2
2018-03-03 11:43:45 +03:00
Alexander Kuznetsov
c893b1096c
Merge pull request #16 from MysterionRise/master
...
Updates readme with instruction, how to build library from source
2017-10-26 22:42:01 +03:00
Konstantin Perikov
9bc780b83b
update readme with instruction, that you need to build 1.3 library to later use it
2017-10-22 12:00:19 +03:00
Alexander Kuznetsov
f73b9fd287
Merge pull request #14 from MysterionRise/master
...
update lucene and some plugins versions
2017-09-22 17:13:23 +04:00
Alexander Kuznetsov
c6eab00a15
Merge pull request #15 from phront/patch-1
...
The real fix of InvalidTokenOffsetsException
2017-09-22 17:13:07 +04:00
phront
8f72a6ddab
The real fix of InvalidTokenOffsetsException
...
In the previous push i forgot to clear variable "iterator" that also contaned state of filter.
Now highlights feature works fine.
2017-09-22 16:35:42 +09:00
Konstantin Perikov
d13001079b
update lucene and some plugins versions
2017-09-15 16:20:46 +03:00
Alexander Kuznetsov
98f281e748
Merge pull request #13 from phront/patch-1
...
Avoid InvalidTokenOffsetsException
2017-05-08 22:49:48 +03:00
phront
cbc3bce1de
Update MorphologyFilter.java
2017-05-05 12:14:16 +09:00
phront
528d6ffb57
Update MorphologyFilter.java
2017-05-05 12:10:23 +09:00
phront
a5e8bf6952
Avoid InvalidTokenOffsetsException
...
Please see Uwe Schindler's comment at https://issues.apache.org/jira/browse/SOLR-5426?focusedCommentId=14031042&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-14031042
2017-05-05 10:50:33 +09:00
Alexander Kuznetsov
1eef414d37
Merge pull request #12 from grossws/patch-licensing
...
Add licensing information
2017-04-06 22:23:50 +04:00
Konstantin Gribov
e0a70e88fd
Add licensing information
...
Fixes #8
2017-04-04 20:19:49 +03:00
Alexander Kuznetsov
b180862572
Merge pull request #10 from Zanzarchik/master
...
Add an implementation of the TokenFilterFactory for the MorphologyFilter
2017-01-25 16:53:23 +03:00
Pavel Artanov
b918dad855
Add a description how to use the MorphologyFilter in a SOLR schema.
2017-01-24 13:41:57 +04:00
Pavel Artanov
6fc7e109cb
Add an implementation of the TokenFilterFactory for the MorphologyFilter.
...
Now you can use the MorphologyFilterFactory in a schema.xml:
<fieldType name="content" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="solr.StandardTokenizerFactory"/>
<filter class="org.apache.lucene.analysis.morphology.MorphologyFilterFactory" language="Russian"/>
<filter class="org.apache.lucene.analysis.morphology.MorphologyFilterFactory" language="English"/>
</analyzer>
</fieldType>
2017-01-20 18:36:19 +04:00
Alexander Kuznetsov
552274274d
Merge pull request #9 from imotov/lucene-62
...
Upgrade to Lucene 6.2.0
2016-10-28 14:09:38 +03:00
Igor Motov
af5f0dc37a
Upgrade to Lucene 6.2.0
2016-10-26 10:02:43 -10:00
Alexander Kuznetsov
fd9faad64b
Merge pull request #7 from grossws/patch-1
...
Fixed mentions of Apache Lucene (with link to its site)
2016-10-26 11:16:57 +03:00
Konstantin Gribov
a1edbb5ddc
Fixed mentions of Apache Lucene (with link to its site)
2016-10-20 19:36:35 +03:00
Alexander Kuznetsov
717c07a01d
Merge pull request #5 from imotov/lucene-61
...
Upgrade to Lucene 6.1.0
2016-10-03 22:22:15 +03:00
Igor Motov
8bd88aa9cf
Upgrade to Lucene 6.1.0
2016-08-05 17:21:31 -04:00
Alexander Kuznetsov
22caba4f7c
Update README.md
2015-12-16 22:39:28 +03:00
Alexander Kuznetsov
bda49aad18
Merge pull request #1 from imotov/fix-positions-increments-and-keyword-handling
...
Improve incrementToken implementation in MorphologyFilter
2015-07-14 15:53:01 +03:00
Igor Motov
db144bf2ec
Improve incrementToken implementation in MorphologyFilter
...
The current implementation doesn't preserve the attributes of the repeated tokens and stems tokens marked as keywords.
2015-07-03 16:48:02 -04:00
Alexander Kuznetsov
6ca2b27781
Create README.md
2015-06-09 23:00:58 +03:00
Alexander Kuznetsov
393665f08a
[maven-release-plugin] prepare for next development iteration
2015-06-09 21:57:04 +03:00
Alexander Kuznetsov
b785c19b74
[maven-release-plugin] prepare release morphology-1.1
morphology-1.1
2015-06-09 21:56:59 +03:00
Alexander Kuznetsov
d694f558a6
Adding bintray as distribution maven repo
2015-06-09 21:53:45 +03:00
Alexander Kuznetsov
1323228212
Fixing issue https://code.google.com/p/russianmorphology/issues/detail?id=12
2015-03-21 01:28:06 +03:00
Alexander Kuznetsov
3e69baa332
Fixing issue https://code.google.com/p/russianmorphology/issues/detail?id=11
2015-03-21 01:08:18 +03:00
Alexander Kuznetsov
9b793115f7
Fixing issue https://code.google.com/p/russianmorphology/issues/detail?id=9
2015-03-21 00:46:13 +03:00
Alexander Kuznetsov
d300938502
Adding support of lucene 5.0.0
2015-03-21 00:38:55 +03:00