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