Skip to content

Commit 4857427

Browse files
committed
fix tests
1 parent 10e4eed commit 4857427

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

build.gradle

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
plugins {
22
id 'java'
3+
id 'java-library'
34
id 'maven-publish'
45
}
56

7+
group = 'net.twasi'
8+
version = rootProject.file('VERSION').text.trim()
9+
10+
java.sourceCompatibility = JavaVersion.VERSION_1_8
11+
612
repositories {
713
mavenLocal()
814
maven {
@@ -21,14 +27,13 @@ dependencies {
2127
testImplementation 'org.assertj:assertj-core:3.18.1'
2228
}
2329

24-
group = 'net.twasi'
25-
version = '1.0.7'
26-
description = 'obs-websocket-java'
27-
java.sourceCompatibility = JavaVersion.VERSION_1_8
28-
2930
java {
3031
withSourcesJar()
31-
withJavadocJar()
32+
// withJavadocJar()
33+
}
34+
35+
test {
36+
useJUnitPlatform()
3237
}
3338

3439
publishing {

0 commit comments

Comments
 (0)