hankcs / AhoCorasickDoubleArrayTrie

An extremely fast implementation of Aho Corasick algorithm based on Double Array Trie.
http://www.hankcs.com/program/algorithm/aho-corasick-double-array-trie.html
950 stars 290 forks source link

Support Java 9 Platform Module System (JPMS) #55

Closed tkuun101 closed 3 years ago

tkuun101 commented 3 years ago

The automatic-module-name contains the reserved word "array", making this library unusable by projects using the new Java 9 Platform Module System (JPMS). Giving the project a hard coded and valid automatic-module-name makes this library compatible with Java 9 and up, and does not brake current Java 1.6 support.

hankcs commented 3 years ago

Great, thank you.