A dictionary app for searching and parsing online monolingual Japanese to Japanese dictionaries.
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:
The application can be run with:
mvn compile exec:java -Dexec.mainClass=fi.luukuton.jirin.Main
Tests can be performed with:
mvn test
Automatic testing requires an internet connection as it utilizes an online dictionary.
Code coverage can be created with:
mvn jacoco:report
Code coverage can be viewed by opening target/site/jacoco/index.html in a browser.
Following command:
mvn package
generates a runnable JAR file, jirin-1.5-SNAPSHOT.jar, to the target directory.
JavaDoc files can be created with:
mvn javadoc:javadoc
They can be viewed by opening target/site/apidocs/index.html in a browser.
Checks defined in checkstyle.xml can be executed with:
mvn jxr:jxr checkstyle:checkstyle
Results can be viewed by opening target/site/checkstyle.html in a browser.