this repo has no description
1opam-version: "2.0"
2maintainer: "Louis Roché <louis@louisroche.net>"
3authors: "Louis Roché <louis@louisroche.net>"
4homepage: "https://github.com/Khady/ocaml-junit"
5bug-reports: "https://github.com/Khady/ocaml-junit/issues"
6license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception"
7dev-repo: "git+https://github.com/Khady/ocaml-junit.git"
8doc: "https://khady.github.io/ocaml-junit/junit/"
9tags: ["junit" "jenkins"]
10depends: [
11 "ocaml" {>= "4.02.3"}
12 "ocamlfind" {build}
13 "jbuilder" {>= "1.0+beta10"}
14 "ptime"
15 "tyxml" {>= "4.0.0"}
16 "odoc" {with-doc & >= "1.1.1"}
17]
18build: [
19 ["jbuilder" "subst" "-p" name] {dev}
20 ["jbuilder" "build" "-p" name "-j" jobs]
21 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test}
22 ["jbuilder" "build" "@doc" "-p" name "-j" jobs] {with-doc}
23]
24synopsis: "JUnit"
25description: """
26ocaml-junit is a module for the creation of JUnit XML reports. It
27provides a typed API to produce valid reports. They are supposed to be
28accepted by Jenkins.
29
30## Installation
31
32opam pin add junit https://github.com/Khady/ocaml-junit.git
33
34## Documentation
35
36Available [here](https://khady.github.io/ocaml-junit/junit/)
37
38## References:
39
40- [Jenkins](https://github.com/jenkinsci/xunit-plugin/blob/master/src/main/resources/org/jenkinsci/plugins/xunit/types/model/xsd/junit-10.xsd)
41- [JUnit-Schema](https://github.com/windyroad/JUnit-Schema/blob/master/JUnit.xsd)
42- [Windyroad](http://windyroad.com.au/dl/Open%20Source/JUnit.xsd)
43- [a gist](https://gist.github.com/erikd/4192748)
44
45Those files are archived in directory [`schemes`](schemes)
46
47License: LGPL either version 3 of the License, or (at your option) any
48later version with OCaml linking exception."""
49url {
50 src:
51 "https://github.com/Khady/ocaml-junit/releases/download/1.0/junit-1.0.tbz"
52 checksum: [
53 "sha256=8538d891e89984e9abb3136880bff44d2babc6ccb3b91e97700b326b58e09227"
54 "md5=419411defafe17efad70cb39f563203c"
55 ]
56}