-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #334 from itsallcode/add-module-info
Add module info files
- Loading branch information
Showing
19 changed files
with
156 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/** | ||
* The general OpenFastTrace API used by all modules. | ||
*/ | ||
module org.itsallcode.openfasttrace.api | ||
{ | ||
exports org.itsallcode.openfasttrace.api; | ||
exports org.itsallcode.openfasttrace.api.core; | ||
exports org.itsallcode.openfasttrace.api.core.serviceloader; | ||
exports org.itsallcode.openfasttrace.api.cli; | ||
exports org.itsallcode.openfasttrace.api.importer; | ||
exports org.itsallcode.openfasttrace.api.importer.input; | ||
exports org.itsallcode.openfasttrace.api.importer.tag.config; | ||
exports org.itsallcode.openfasttrace.api.exporter; | ||
exports org.itsallcode.openfasttrace.api.report; | ||
|
||
requires java.logging; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* The Core OpenFastTrace module. | ||
* | ||
* @uses org.itsallcode.openfasttrace.api.report.ReporterFactory | ||
* @uses org.itsallcode.openfasttrace.api.importer.ImporterFactory | ||
* @uses org.itsallcode.openfasttrace.api.exporter.ExporterFactory | ||
*/ | ||
module org.itsallcode.openfasttrace.core | ||
{ | ||
exports org.itsallcode.openfasttrace.core; | ||
exports org.itsallcode.openfasttrace.core.cli; | ||
exports org.itsallcode.openfasttrace.core.cli.commands; | ||
exports org.itsallcode.openfasttrace.core.report; | ||
exports org.itsallcode.openfasttrace.core.exporter; | ||
exports org.itsallcode.openfasttrace.core.importer; | ||
exports org.itsallcode.openfasttrace.core.serviceloader; | ||
|
||
requires java.logging; | ||
requires transitive org.itsallcode.openfasttrace.api; | ||
|
||
uses org.itsallcode.openfasttrace.api.exporter.ExporterFactory; | ||
uses org.itsallcode.openfasttrace.api.importer.ImporterFactory; | ||
uses org.itsallcode.openfasttrace.api.report.ReporterFactory; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* Common classes for XML exporters. | ||
*/ | ||
module org.itsallcode.openfasttrace.exporter.common | ||
{ | ||
exports org.itsallcode.openfasttrace.exporter.common; | ||
|
||
requires java.logging; | ||
requires transitive java.xml; | ||
requires org.itsallcode.openfasttrace.api; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* This provides an exporter for the SpecObject XML format. | ||
*/ | ||
module org.itsallcode.openfasttrace.exporter.specobject | ||
{ | ||
exports org.itsallcode.openfasttrace.exporter.specobject; | ||
|
||
requires java.logging; | ||
requires java.xml; | ||
requires org.itsallcode.openfasttrace.api; | ||
requires org.itsallcode.openfasttrace.exporter.common; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* This provides an importer for the MarkDown format. | ||
*/ | ||
module org.itsallcode.openfasttrace.importer.markdown | ||
{ | ||
exports org.itsallcode.openfasttrace.importer.markdown; | ||
|
||
requires java.logging; | ||
requires transitive org.itsallcode.openfasttrace.api; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/** | ||
* This provides an importer for the SpecObject XML format. | ||
*/ | ||
module org.itsallcode.openfasttrace.importer.specobject | ||
{ | ||
exports org.itsallcode.openfasttrace.importer.specobject; | ||
exports org.itsallcode.openfasttrace.importer.specobject.handler; | ||
exports org.itsallcode.openfasttrace.importer.specobject.xml; | ||
exports org.itsallcode.openfasttrace.importer.specobject.xml.tree; | ||
exports org.itsallcode.openfasttrace.importer.specobject.xml.event; | ||
|
||
requires java.logging; | ||
requires transitive java.xml; | ||
requires transitive org.itsallcode.openfasttrace.api; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* This provides an importer for coverage tags. | ||
*/ | ||
module org.itsallcode.openfasttrace.importer.tag | ||
{ | ||
exports org.itsallcode.openfasttrace.importer.tag; | ||
|
||
requires java.logging; | ||
requires transitive org.itsallcode.openfasttrace.api; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
/** | ||
* This provides an importer for the ZIP files. | ||
*/ | ||
module org.itsallcode.openfasttrace.importer.zip | ||
{ | ||
exports org.itsallcode.openfasttrace.importer.zip; | ||
exports org.itsallcode.openfasttrace.importer.zip.input; | ||
|
||
requires transitive org.itsallcode.openfasttrace.api; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** | ||
* This provides an report generator for the Aspec format. | ||
*/ | ||
module org.itsallcode.openfasttrace.report.aspec | ||
{ | ||
exports org.itsallcode.openfasttrace.report.aspec; | ||
|
||
requires java.xml; | ||
requires java.logging; | ||
requires org.itsallcode.openfasttrace.api; | ||
requires org.itsallcode.openfasttrace.exporter.common; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/** | ||
* This provides an report generator for the HTML format. | ||
*/ | ||
module org.itsallcode.openfasttrace.report.html | ||
{ | ||
exports org.itsallcode.openfasttrace.report.html; | ||
exports org.itsallcode.openfasttrace.report.html.view; | ||
exports org.itsallcode.openfasttrace.report.html.view.html; | ||
|
||
requires transitive org.itsallcode.openfasttrace.api; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/** | ||
* This provides an report generator for the plain text format. | ||
*/ | ||
module org.itsallcode.openfasttrace.report.plaintext | ||
{ | ||
exports org.itsallcode.openfasttrace.report.plaintext; | ||
|
||
requires transitive org.itsallcode.openfasttrace.api; | ||
} |