Skip to content

Commit e411026

Browse files
Update instrumentation build.gradle
1 parent bc0e8f2 commit e411026

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

utbot-instrumentation/build.gradle

Lines changed: 18 additions & 1 deletion
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 {
@@ -32,4 +36,17 @@ configurations {
3236

3337
artifacts {
3438
instrumentationArchive jar
35-
}
39+
}
40+
41+
publishing {
42+
repositories {
43+
maven {
44+
name = "GitHubPackages"
45+
url = "https://maven.pkg.github.com/UnitTestBot/UTBotJava"
46+
credentials {
47+
username = System.getenv("GITHUB_ACTOR")
48+
password = System.getenv("GITHUB_TOKEN")
49+
}
50+
}
51+
}
52+
}

0 commit comments

Comments
 (0)