summaryrefslogtreecommitdiff
path: root/src/main/java/module-info.java
blob: 900e0f814111c5160114f2d749ac7d7f9ce074ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * CLI tool for command-line text manipulation.
 * 
 * @author bjcul
 *
 */
module everge {
	exports bjc.everge;

	requires transitive bjc.utils;
	requires transitive esodata;
	requires junit;
}