We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10e4eed commit 4857427Copy full SHA for 4857427
build.gradle
@@ -1,8 +1,14 @@
1
plugins {
2
id 'java'
3
+ id 'java-library'
4
id 'maven-publish'
5
}
6
7
+group = 'net.twasi'
8
+version = rootProject.file('VERSION').text.trim()
9
+
10
+java.sourceCompatibility = JavaVersion.VERSION_1_8
11
12
repositories {
13
mavenLocal()
14
maven {
@@ -21,14 +27,13 @@ dependencies {
21
27
testImplementation 'org.assertj:assertj-core:3.18.1'
22
28
23
29
24
-group = 'net.twasi'
25
-version = '1.0.7'
26
-description = 'obs-websocket-java'
-java.sourceCompatibility = JavaVersion.VERSION_1_8
-
30
java {
31
withSourcesJar()
- withJavadocJar()
32
+ // withJavadocJar()
33
+}
34
35
+test {
36
+ useJUnitPlatform()
37
38
39
publishing {
0 commit comments