This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Describe artifacts in the documentation
The description of libraries with appropriate links were added to artifacts.md page. Also, to render MD tables, "sphinx-markdown-tables" extension is added to sphinx's configuration. #146
- Loading branch information
Showing
4 changed files
with
15 additions
and
19 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
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 |
---|---|---|
@@ -1,7 +1,17 @@ | ||
# Artifacts | ||
|
||
https://www.javadoc.io/doc/io.github.tatools/sunshine-core | ||
Sunshine consists of 3 libraries | ||
- `sunshine-core` provides interfaces and common implementations | ||
- `sunshine-junit4` wraps JUnit4 to allow the creation of [entry points](entry-points.md) | ||
- `sunshine-testng` wraps TestNG to allow the creation of [entry points](entry-points.md) | ||
|
||
https://www.javadoc.io/doc/io.github.tatools/sunshine-junit4 | ||
Artifact|`sunshine-testng`|`sunshine-junit4`|`sunshine-core` | ||
---|---|---|--- | ||
Library|[![](https://img.shields.io/maven-central/v/org.tatools/sunshine-testng.svg)](https://search.maven.org/search?q=g:%22org.tatools%22%20AND%20a:%22sunshine-testng%22)|[![](https://img.shields.io/maven-central/v/org.tatools/sunshine-junit4.svg)](https://search.maven.org/search?q=g:%22org.tatools%22%20AND%20a:%22sunshine-junit4%22)|[![](https://img.shields.io/maven-central/v/org.tatools/sunshine-core.svg)](https://search.maven.org/search?q=g:%22org.tatools%22%20AND%20a:%22sunshine-core%22) | ||
Javadoc|[![](https://www.javadoc.io/badge/org.tatools/sunshine-testng.svg)](https://www.javadoc.io/doc/org.tatools/sunshine-testng)|[![](https://www.javadoc.io/badge/org.tatools/sunshine-junit4.svg)](https://www.javadoc.io/doc/org.tatools/sunshine-junit4)|[![](https://www.javadoc.io/badge/org.tatools/sunshine-core.svg)](https://www.javadoc.io/doc/org.tatools/sunshine-core) | ||
|
||
https://www.javadoc.io/doc/io.github.tatools/sunshine-testng | ||
|
||
`sunshine-junit4` was tested on `4.11` version of JUnit4 and `sunshine-testng` on `6.11` version of TestNG. | ||
|
||
Since `0.4.x` version Sunshine uses `org.tatools` group ID. If you need the earlier version | ||
please use `io.github.tatools` instead. |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
sphinx==1.8.2 | ||
# recommonmark==0.5.0.dev0 | ||
git+https://github.com/rtfd/recommonmark | ||
sphinx-markdown-tables==0.0.9 |