Skip to content

Commit 69b5ac1

Browse files
committed
Remove Werror for a while
1 parent 21f70de commit 69b5ac1

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

gradle/include/jvm-project.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ java {
3636
}
3737

3838
compileJava {
39-
options.compilerArgs << '-Werror' << '-Xlint:all'
39+
options.compilerArgs << '-Xlint:all'
4040
options.encoding = 'UTF-8'
4141
}
4242

utbot-analytics/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ if (osName == "mac") osName = "macosx"
99
String classifier = osName + "-x86_64"
1010

1111
evaluationDependsOn(':utbot-framework')
12-
compileKotlin.dependsOn project(':utbot-instrumentation').tasks.jar
1312
compileTestJava.dependsOn tasks.getByPath(':utbot-framework:testClasses')
1413

1514
dependencies {

utbot-sample/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ plugins {
33
id 'java-library'
44
}
55

6+
apply from: "${parent.projectDir}/gradle/include/jvm-project.gradle"
7+
68
dependencies {
79
implementation group: 'org.jetbrains', name: 'annotations', version: '16.0.2'
810
implementation group: 'com.github.stephenc.findbugs', name: 'findbugs-annotations', version: '1.3.9-1'

0 commit comments

Comments
 (0)