-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update dependency de.gdata:vaas to v8.2.3 (#521)
* chore(deps): update dependency de.gdata:vaas to v8.2.3 * testing the local build with the example * bugfix: cancel the timer on close not the task * downgrade the example because 8.2.3 has a bug --------- Co-authored-by: Renovate Bot <[email protected]>
- Loading branch information
1 parent
0b02a8a
commit b3a3d75
Showing
4 changed files
with
118 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
plugins { | ||
id 'java' | ||
id 'java-library' | ||
id 'maven-publish' | ||
id 'signing' | ||
} | ||
|
||
group = 'de.gdata' | ||
version = '0.0.0' | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
java { | ||
withJavadocJar() | ||
withSourcesJar() | ||
} | ||
|
||
dependencies { | ||
implementation 'org.projectlombok:lombok:1.18.34' | ||
implementation 'com.google.code.gson:gson:2.11.0' | ||
implementation 'org.java-websocket:Java-WebSocket:1.5.7' | ||
implementation 'org.jetbrains:annotations:24.1.0' | ||
implementation 'io.github.cdimascio:dotenv-java:3.0.1' | ||
testImplementation 'org.testng:testng:7.10.2' | ||
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.3' | ||
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.3' | ||
testRuntimeOnly 'org.junit.platform:junit-platform-launcher:1.10.3' | ||
|
||
|
||
compileOnly 'org.projectlombok:lombok:1.18.34' | ||
annotationProcessor 'org.projectlombok:lombok:1.18.34' | ||
|
||
testCompileOnly 'org.projectlombok:lombok:1.18.34' | ||
testAnnotationProcessor 'org.projectlombok:lombok:1.18.34' | ||
} | ||
|
||
test { | ||
useJUnitPlatform() | ||
testLogging { | ||
events "passed", "skipped", "failed" | ||
|
||
showExceptions true | ||
exceptionFormat "full" | ||
showCauses true | ||
showStackTraces true | ||
} | ||
} | ||
|
||
tasks.register('testWithoutErrorLogProducer', Test) { | ||
useJUnitPlatform { | ||
excludeTags 'ErrorLogProducer' | ||
} | ||
testLogging { | ||
events "passed", "skipped", "failed" | ||
|
||
showExceptions true | ||
exceptionFormat "full" | ||
showCauses true | ||
showStackTraces true | ||
} | ||
} | ||
|
||
publishing { publications { | ||
mavenJava(MavenPublication) { | ||
from components.java | ||
groupId = 'de.gdata' | ||
artifactId = 'vaas' // Ersetzen Sie dies durch die ID Ihres Artifacts | ||
version = '8-future' | ||
} | ||
} | ||
repositories { | ||
maven { | ||
name = 'local' | ||
url = uri('file://workspaces/vaas/java/build/repos') | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
plugins { | ||
id 'java' | ||
} | ||
|
||
group 'de.gdata.vaasexample' | ||
version '1.0-SNAPSHOT' | ||
|
||
repositories { | ||
maven { | ||
url 'file://workspaces/vaas/java/build/repos' | ||
} | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
implementation 'org.slf4j:slf4j-nop:2.0.13' | ||
implementation 'de.gdata:vaas:8-future' | ||
} | ||
|
||
task fileScan(type: JavaExec) { | ||
classpath = sourceSets.main.runtimeClasspath | ||
mainClass = 'de.gdata.vaasexample.Main' | ||
} | ||
|
||
task urlScan(type: JavaExec) { | ||
classpath = sourceSets.main.runtimeClasspath | ||
mainClass = 'de.gdata.vaasexample.UrlScan' | ||
} | ||
|
||
task authentication(type: JavaExec) { | ||
classpath = sourceSets.main.runtimeClasspath | ||
mainClass = 'de.gdata.vaasexample.Authentication' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters