File: build.gradle.kts

package info (click to toggle)
opentest4j-reporting 0.1.0-M1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 468 kB
  • sloc: java: 2,059; xml: 44; makefile: 3
file content (22 lines) | stat: -rw-r--r-- 418 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
plugins {
    id("org.ajoberstar.git-publish") version "4.1.0"
}

val schemas by configurations.creating {
    isCanBeConsumed = false
    isCanBeResolved = true
}

dependencies {
    schemas(project(":schema", "schemas"))
}

gitPublish {
    repoUri.set("https://github.com/ota4j-team/open-test-reporting.git")
    branch.set("gh-pages")

    contents {
        from(schemas)
        into("schemas/snapshot")
    }
}