We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e411026 commit 928457cCopy full SHA for 928457c
1 file changed
utbot-fuzzers/build.gradle
@@ -1,3 +1,7 @@
1
+plugins {
2
+ id 'maven-publish'
3
+}
4
+
5
apply from: "${parent.projectDir}/gradle/include/jvm-project.gradle"
6
7
dependencies {
@@ -9,3 +13,16 @@ dependencies {
9
13
compileJava {
10
14
options.compilerArgs = []
11
15
}
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