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/" 9tags: ["junit" "jenkins"] 10depends: [ 11 "ocaml" {>= "4.02.3"} 12 "jbuilder" {>= "1.0+beta10"} 13 "ptime" 14 "tyxml" {>= "4.0.0"} 15 "odoc" {with-doc & >= "1.1.1"} 16] 17build: [ 18 ["jbuilder" "subst" "-p" name] {dev} 19 ["jbuilder" "build" "-p" name "-j" jobs] 20 ["jbuilder" "runtest" "-p" name "-j" jobs] {with-test} 21 ["jbuilder" "build" "@doc" "-p" name "-j" jobs] {with-doc} 22] 23synopsis: "JUnit" 24description: """ 25ocaml-junit is a package for the creation of JUnit XML reports. It 26provides a typed API to produce valid reports. They are supposed to be 27accepted by Jenkins. 28 29It comes with two packages for support of OUnit and Alcotest. 30 31## Installation 32 33``` 34opam pin add junit https://github.com/Khady/ocaml-junit.git 35opam pin add junit_ounit https://github.com/Khady/ocaml-junit.git 36opam pin add junit_alcotest https://github.com/Khady/ocaml-junit.git 37``` 38 39## Documentation 40 41Available [here](https://khady.github.io/ocaml-junit/) 42 43## References: 44 45- [Jenkins](https://github.com/jenkinsci/xunit-plugin/blob/master/src/main/resources/org/jenkinsci/plugins/xunit/types/model/xsd/junit-10.xsd) 46- [JUnit-Schema](https://github.com/windyroad/JUnit-Schema/blob/master/JUnit.xsd) 47- [Windyroad](http://windyroad.com.au/dl/Open%20Source/JUnit.xsd) 48- [a gist](https://gist.github.com/erikd/4192748) 49 50Those files are archived in directory [`schemes`](schemes) 51 52License: LGPL either version 3 of the License, or (at your option) any 53later version with OCaml linking exception.""" 54url { 55 src: 56 "https://github.com/Khady/ocaml-junit/releases/download/2.0/junit-2.0.tbz" 57 checksum: [ 58 "sha256=6fbe2447cc2c1e7a62fd922c540a5302612f92ba617286c69f427f9138a9e4d2" 59 "md5=d217a13be3631866fa6b895188a6c7a9" 60 ] 61}