JPlag is released on Maven Central, it can be included as follows:
<dependency>
<groupId>de.jplag</groupId>
<artifactId>jplag</artifactId>
</dependency>
mvn clean package
from the root of the repository to compile and build all submodules.
Run mvn clean package assembly:single
instead if you need the full jar which includes all dependencies.jplag/target
.JPlag can either be used via the CLI or directly via its Java API. For more information, see the usage information in the wiki.
Note that the legacy CLI is varying slightly.
JPlag - Detecting Software Plagiarism
Usage: JPlag [ options ] [<root-dir> ...]
<root-dir> Root-directory that contains submissions
named arguments:
-h, --help show this help message and exit
-l {java,python3,cpp,csharp,char,text,scheme} Select the language to parse the submissions (default: java)
-bc BC Path of the directory containing the base code (common framework used in all submissions)
-v {quiet,long} Verbosity of the logging (default: quiet)
-d Debug parser. Non-parsable files will be stored (default false)
-S S Look in directories <root-dir>/*/<dir> for programs
-p P comma-separated list of all filename suffixes that are included
-x X All files named in this file will be ignored in the comparison (line-separated list)
-t T Tunes the comparison sensitivity by adjusting the minimum token required to be counted as a matching section. A smaller <n> increases the sensitivity but might lead to more false-positives
-m M Comparison similarity threshold [0-100]: All comparisons above this threshold will be saved (default: 0.0)
-n N The maximum number of comparisons that will be shown in the generated report, if set to -1 all comparisons will be shown (default: 30)
-r R Name of the directory in which the comparison results will be stored (default: result)
-c {normal,parallel} Comparison mode used to compare the programs (default: normal)
The new API makes it easy to integrate JPlag's plagiarism detection into external Java projects:
JPlagOptions options = new JPlagOptions(List.of("/path/to/rootDir"), LanguageOption.JAVA);
options.setBaseCodeSubmissionName("template");
JPlag jplag = new JPlag(options);
JPlagResult result = jplag.run();
List<JPlagComparison> comparisons = result.getComparisons();
// Optional
File outputDir = new File("/path/to/output");
Report report = new Report(outputDir);
report.writeResult(result);
We're happy to incorporate all improvements to JPlag into this codebase. Feel free to fork the project and send pull requests. Please consider our guidelines for contributions.
If you encounter bugs or other issues, please report them here. For other purposes, you can contact us at jplag@ipd.kit.edu . If you are doing research related to JPlag, we would love to know what you are doing. Feel free to contact us!