Skip to content

Commit bc0e8f2

Browse files
Update framework build.gradle
1 parent 6d232d3 commit bc0e8f2

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

utbot-framework/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
repositories {
@@ -74,4 +78,17 @@ test {
7478
if (System.getProperty('DEBUG', 'false') == 'true') {
7579
jvmArgs '-Xdebug', '-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=9009'
7680
}
77-
}
81+
}
82+
83+
publishing {
84+
repositories {
85+
maven {
86+
name = "GitHubPackages"
87+
url = "https://maven.pkg.github.com/UnitTestBot/UTBotJava"
88+
credentials {
89+
username = System.getenv("GITHUB_ACTOR")
90+
password = System.getenv("GITHUB_TOKEN")
91+
}
92+
}
93+
}
94+
}

0 commit comments

Comments
 (0)