-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjunit_ounit.opam
33 lines (33 loc) · 919 Bytes
/
junit_ounit.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
opam-version: "2.0"
maintainer: "Louis Roché <louis@louisroche.net>"
authors: ["Louis Roché <louis@louisroche.net>" "Simon Cruanes <simon.cruanes.2007@m4x.org>"]
homepage: "https://github.com/Khady/ocaml-junit"
bug-reports: "https://github.com/Khady/ocaml-junit/issues"
license: "LGPL-3.0-or-later WITH OCaml-LGPL-linking-exception"
dev-repo: "git+https://github.com/Khady/ocaml-junit.git"
doc: "https://khady.github.io/ocaml-junit/"
tags: ["junit" "jenkins" "ounit"]
depends: [
"dune" {>= "3.0"}
"odoc" {with-doc & >= "1.1.1"}
"ounit2"
"junit" {= version}
"ocamlformat" {= "0.27.0" & with-dev-setup}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
name: "junit_ounit"
synopsis: "JUnit XML reports generation for OUnit tests"
description: "JUnit XML reports generation for OUnit tests"