项目作者: Luukuton

项目描述 :
A dictionary app for searching and parsing online monolingual Japanese to Japanese dictionaries.
高级语言: Java
项目地址: git://github.com/Luukuton/jirin-dictionary.git
创建时间: 2020-03-08T20:12:15Z
项目社区:https://github.com/Luukuton/jirin-dictionary

开源协议:zlib License

下载


Jirin Dictionary

A Java application for searching and parsing online monolingual Japanese dictionaries. Initially support only for goo辞典. The name comes from the lesser used Japanese word for dictionary, 辞林.

Current state of the UI:

current_ui

Releases

Documentation

Running

The application can be run with:

  1. mvn compile exec:java -Dexec.mainClass=fi.luukuton.jirin.Main

Testing

Tests can be performed with:

  1. mvn test

Automatic testing requires an internet connection as it utilizes an online dictionary.

Code coverage can be created with:

  1. mvn jacoco:report

Code coverage can be viewed by opening target/site/jacoco/index.html in a browser.

Generating a JAR file

Following command:

  1. mvn package

generates a runnable JAR file, jirin-1.5-SNAPSHOT.jar, to the target directory.

JavaDoc

JavaDoc files can be created with:

  1. mvn javadoc:javadoc

They can be viewed by opening target/site/apidocs/index.html in a browser.

CheckStyle

Checks defined in checkstyle.xml can be executed with:

  1. mvn jxr:jxr checkstyle:checkstyle

Results can be viewed by opening target/site/checkstyle.html in a browser.

Dependencies

  • Java 11+
  • Maven