An open API service indexing awesome lists of open source software.

https://github.com/junit-team/junit-team.github.io

JUnit website
https://github.com/junit-team/junit-team.github.io

Last synced: 9 months ago
JSON representation

JUnit website

Awesome Lists containing this project

README

          

# JUnit Website

## Generating redirects to former JUnit 4 pages

```sh
gfind . -regex '.*.html' > ~/Desktop/FILES
while read i ; do mkdir -p "$(dirname "$i")"; done < ~/Desktop/FILES
while read i ; do cat license.html > $i; done < ~/Desktop/FILES
```