Skip to content

Commit 928457c

Browse files
Update fuzzers build.gradle
1 parent e411026 commit 928457c

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

utbot-fuzzers/build.gradle

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
plugins {
2+
id 'maven-publish'
3+
}
4+
15
apply from: "${parent.projectDir}/gradle/include/jvm-project.gradle"
26

37
dependencies {
@@ -9,3 +13,16 @@ dependencies {
913
compileJava {
1014
options.compilerArgs = []
1115
}
16+
17+
publishing {
18+
repositories {
19+
maven {
20+
name = "GitHubPackages"
21+
url = "https://maven.pkg.github.com/UnitTestBot/UTBotJava"
22+
credentials {
23+
username = System.getenv("GITHUB_ACTOR")
24+
password = System.getenv("GITHUB_TOKEN")
25+
}
26+
}
27+
}
28+
}

0 commit comments

Comments
 (0)