File tree Expand file tree Collapse file tree 10 files changed +17
-17
lines changed Expand file tree Collapse file tree 10 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -81,8 +81,7 @@ allprojects {
81
81
82
82
repositories {
83
83
mavenCentral()
84
- google()
85
- maven(" https://s01.oss.sonatype.org/content/repositories/orgunittestbotsoot-1004/" )
84
+ maven(" https://jitpack.io" )
86
85
maven(" https://plugins.gradle.org/m2" )
87
86
maven(" https://www.jetbrains.com/intellij-repository/releases" )
88
87
maven(" https://cache-redirector.jetbrains.com/maven-central" )
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ junit4PlatformVersion=1.9.0
18
18
mockitoVersion =3.5.13
19
19
z3Version =4.8.9.1
20
20
z3JavaApiVersion =4.8.9
21
- sootVersion = 4.4.0-FORK-2
21
+ sootCommitHash = ed85c59
22
22
kotlinVersion =1.7.20
23
23
log4j2Version =2.13.3
24
24
coroutinesVersion =1.6.3
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ dependencies {
14
14
testImplementation project(' :utbot-sample' )
15
15
testImplementation group : ' junit' , name : ' junit' , version : junit4Version
16
16
17
- implementation " org.unittestbot.soot :soot-utbot-fork :${ sootVersion } "
17
+ implementation " com.github.UnitTestBot :soot:${ sootCommitHash } "
18
18
implementation group : ' com.github.haifengl' , name : ' smile-kotlin' , version : ' 2.6.0'
19
19
implementation group : ' com.github.haifengl' , name : ' smile-plot' , version : ' 2.6.0'
20
20
implementation group : ' com.github.haifengl' , name : ' smile-core' , version : ' 2.6.0'
Original file line number Diff line number Diff line change 1
1
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
2
2
3
3
val junit4Version: String by rootProject
4
- val sootVersion : String by rootProject
4
+ val sootCommitHash : String by rootProject
5
5
val commonsLangVersion: String by rootProject
6
6
val kotlinLoggingVersion: String? by rootProject
7
7
@@ -15,7 +15,7 @@ dependencies {
15
15
api(project(" :utbot-rd" ))
16
16
implementation(group = " com.jetbrains.rd" , name = " rd-framework" , version = " 2022.3.1" )
17
17
implementation(group = " com.jetbrains.rd" , name = " rd-core" , version = " 2022.3.1" )
18
- implementation(" org.unittestbot.soot :soot-utbot-fork :${sootVersion } " )
18
+ implementation(" com.github.UnitTestBot :soot:${sootCommitHash } " )
19
19
implementation(group = " io.github.microutils" , name = " kotlin-logging" , version = kotlinLoggingVersion)
20
20
// TODO do we really need apache commons?
21
21
implementation(group = " org.apache.commons" , name = " commons-lang3" , version = commonsLangVersion)
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ dependencies {
37
37
testImplementation project(" :utbot-framework" ). sourceSets. test. output
38
38
testImplementation project(" :utbot-core" ). sourceSets. test. output
39
39
40
- implementation " org.unittestbot.soot :soot-utbot-fork :${ sootVersion } "
40
+ implementation " com.github.UnitTestBot :soot:${ sootCommitHash } "
41
41
42
42
implementation group : ' com.fasterxml.jackson.module' , name : ' jackson-module-kotlin' , version : jacksonVersion
43
43
implementation group : ' org.sosy-lab' , name : ' javasmt-solver-z3' , version : javasmtSolverZ3Version
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ dependencies {
19
19
implementation group : ' com.jetbrains.rd' , name : ' rd-framework' , version : ' 2022.3.1'
20
20
implementation group : ' com.jetbrains.rd' , name : ' rd-core' , version : ' 2022.3.1'
21
21
22
- implementation " org.unittestbot.soot :soot-utbot-fork :${ sootVersion } "
22
+ implementation " com.github.UnitTestBot :soot:${ sootCommitHash } "
23
23
implementation group : ' com.esotericsoftware.kryo' , name : ' kryo5' , version : kryoVersion
24
24
// this is necessary for serialization of some collections
25
25
implementation group : ' de.javakaffee' , name : ' kryo-serializers' , version : kryoSerializersVersion
Original file line number Diff line number Diff line change 1
1
import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
2
2
3
- val sootVersion: String by rootProject
4
- val kotlinLoggingVersion: String by rootProject
5
- val rgxgenVersion: String by rootProject
6
-
7
3
plugins {
8
4
id(" com.github.johnrengelman.shadow" ) version " 7.1.2"
9
5
}
@@ -15,10 +11,14 @@ tasks {
15
11
}
16
12
}
17
13
14
+ val sootCommitHash: String by rootProject
15
+ val kotlinLoggingVersion: String by rootProject
16
+ val rgxgenVersion: String by rootProject
17
+
18
18
dependencies {
19
19
implementation(project(" :utbot-framework-api" ))
20
20
21
- implementation(" org.unittestbot.soot :soot-utbot-fork :${sootVersion } " )
21
+ implementation(" com.github.UnitTestBot :soot:${sootCommitHash } " )
22
22
implementation(group = " io.github.microutils" , name = " kotlin-logging" , version = kotlinLoggingVersion)
23
23
implementation(group = " com.github.curious-odd-man" , name = " rgxgen" , version = rgxgenVersion)
24
24
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ val jacksonVersion: String? by rootProject
5
5
val ideType: String? by rootProject
6
6
val pythonCommunityPluginVersion: String? by rootProject
7
7
val pythonUltimatePluginVersion: String? by rootProject
8
- val sootVersion : String? by rootProject
8
+ val sootCommitHash : String? by rootProject
9
9
val kryoVersion: String? by rootProject
10
10
val semVer: String? by rootProject
11
11
val androidStudioPath: String? by rootProject
@@ -82,6 +82,7 @@ tasks {
82
82
}
83
83
84
84
dependencies {
85
+ // implementation("com.github.UnitTestBot:soot:${sootCommitHash}")
85
86
implementation(group = " com.jetbrains.rd" , name = " rd-framework" , version = " 2022.3.1" )
86
87
implementation(group = " com.jetbrains.rd" , name = " rd-core" , version = " 2022.3.1" )
87
88
implementation(group = " com.esotericsoftware.kryo" , name = " kryo5" , version = kryoVersion)
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ dependencies {
52
52
implementation project(" :utbot-framework" )
53
53
implementation project(" :utbot-analytics" )
54
54
55
- implementation " org.unittestbot.soot :soot-utbot-fork :${ sootVersion } "
55
+ implementation " com.github.UnitTestBot :soot:${ sootCommitHash } "
56
56
implementation group : ' org.apache.commons' , name : ' commons-exec' , version : ' 1.2'
57
57
implementation group : ' io.github.microutils' , name : ' kotlin-logging' , version : kotlinLoggingVersion
58
58
implementation group : ' org.jsoup' , name : ' jsoup' , version : ' 1.6.2'
Original file line number Diff line number Diff line change 1
1
val kotlinLoggingVersion: String by rootProject
2
2
val junit4Version: String by rootProject
3
3
val junit5Version: String by rootProject
4
- val sootVersion : String by rootProject
4
+ val sootCommitHash : String by rootProject
5
5
val mockitoVersion: String by rootProject
6
6
7
7
dependencies {
8
8
implementation(project(" :utbot-framework-api" ))
9
- implementation(" org.unittestbot.soot :soot-utbot-fork :${sootVersion } " )
9
+ implementation(" com.github.UnitTestBot :soot:${sootCommitHash } " )
10
10
implementation(project(" :utbot-fuzzers" ))
11
11
implementation(project(" :utbot-instrumentation" ))
12
12
implementation(group = " com.github.haifengl" , name = " smile-kotlin" , version = " 2.6.0" )
You can’t perform that action at this time.
0 commit comments